File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
src/test/java/de/westemeyer/version/service Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ It is used in combination with the [artifact-version-maven-plugin](https://githu
6868 <plugin >
6969 <groupId >de.westemeyer</groupId >
7070 <artifactId >artifact-version-maven-plugin</artifactId >
71- <version >1.0.0 </version >
71+ <version >1.0.1 </version >
7272 <executions >
7373 <execution >
7474 <goals >
@@ -84,7 +84,7 @@ It is used in combination with the [artifact-version-maven-plugin](https://githu
8484 <dependency >
8585 <groupId >de.westemeyer</groupId >
8686 <artifactId >artifact-version-service</artifactId >
87- <version >1.0.0 </version >
87+ <version >1.0.1 </version >
8888 </dependency >
8989</dependencies >
9090```
@@ -96,7 +96,7 @@ It is also possible to configure the generator to use target directories and a m
9696 <plugin >
9797 <groupId >de.westemeyer</groupId >
9898 <artifactId >artifact-version-maven-plugin</artifactId >
99- <version >1.0.0 </version >
99+ <version >1.0.1 </version >
100100 <executions >
101101 <execution >
102102 <goals >
@@ -105,7 +105,7 @@ It is also possible to configure the generator to use target directories and a m
105105 </execution >
106106 </executions >
107107 <configuration >
108- <packageName >my.package.for. generated.service.class </packageName >
108+ <packageName >my.generated.service</packageName >
109109 <serviceClass >MyGeneratedServiceClass</serviceClass >
110110 <targetFolder >target/generated-sources</targetFolder >
111111 </configuration >
Original file line number Diff line number Diff line change 66
77 <groupId >de.westemeyer</groupId >
88 <artifactId >artifact-version-service</artifactId >
9- <version >1.0.0 </version >
9+ <version >1.0.1 </version >
1010 <name >Artifact version service definition</name >
1111
1212 <description >The artifact-version-service is used to collect artifact versions in the classpath.</description >
115115 <plugin >
116116 <groupId >de.westemeyer</groupId >
117117 <artifactId >artifact-version-maven-plugin</artifactId >
118- <version >1.0.0 </version >
118+ <version >1.0.1 </version >
119119 <executions >
120120 <execution >
121121 <goals >
232232 <groupId >org.junit.jupiter</groupId >
233233 <artifactId >junit-jupiter</artifactId >
234234 <version >5.8.0</version >
235+ <scope >test</scope >
235236 </dependency >
236237 <dependency >
237238 <groupId >com.google.auto.service</groupId >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void collectArtifacts() {
2626 artifact = list .get (0 );
2727 Assertions .assertEquals ("de.westemeyer" , artifact .getGroupId ());
2828 Assertions .assertEquals ("artifact-version-service" , artifact .getArtifactId ());
29- Assertions .assertEquals ("1.0.0 " , artifact .getVersion ());
29+ Assertions .assertEquals ("1.0.1 " , artifact .getVersion ());
3030 Assertions .assertEquals ("Artifact version service definition" , artifact .getName ());
3131 }
3232
You can’t perform that action at this time.
0 commit comments