Skip to content

Commit 814814d

Browse files
committed
Use wls-exporter as the artifact name and drop the version when specifying a configuration
1 parent 62a3c92 commit 814814d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ bash getXXX.sh <your-config-file>
1717

1818
## Building from source
1919

20-
Use `mvn install` to build the web application. This will create `monitoring-exporter-<version>`, where <version>
21-
is the Maven-assigned version number. This can be deployed to WLS.
20+
Use `mvn install` to build the web application. This will create `wls-exporter-<version>`, where <version>
21+
is the Maven-assigned version number, It is intended for release to Maven Central.
2222

23-
Adding `-Dconfiguration=<some-config-file>` will insert the specified configuration as its default.
23+
Adding `-Dconfiguration=<some-config-file>` will insert the specified configuration as its default and remove
24+
the version number to simplify deployment to WebLogic Server.
2425

2526
## Configuration
2627
Here is an example `yaml` configuration:

pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<modelVersion>4.0.0</modelVersion>
99

1010
<groupId>com.oracle.wls.exporter</groupId>
11-
<artifactId>monitoring-exporter</artifactId>
11+
<artifactId>wls-exporter</artifactId>
1212
<version>1.2.0-SNAPSHOT</version>
1313
<packaging>war</packaging>
1414

@@ -166,6 +166,7 @@
166166
</property>
167167
</activation>
168168
<build>
169+
<finalName>wls-exporter</finalName>
169170
<plugins>
170171
<plugin>
171172
<groupId>com.coderplus.maven.plugins</groupId>

0 commit comments

Comments
 (0)