Skip to content

Commit 19d512a

Browse files
committed
Updated dependency scopes
1 parent 9674ac8 commit 19d512a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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>

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>
@@ -115,7 +115,7 @@
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>
@@ -232,6 +232,7 @@
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>

src/test/java/de/westemeyer/version/service/ArtifactVersionCollectorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)