Skip to content

Commit

Permalink
Updated dependency scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
swesteme committed Sep 30, 2021
1 parent 9674ac8 commit 19d512a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ It is used in combination with the [artifact-version-maven-plugin](https://githu
<plugin>
<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<executions>
<execution>
<goals>
Expand All @@ -84,7 +84,7 @@ It is used in combination with the [artifact-version-maven-plugin](https://githu
<dependency>
<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-service</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>
```
Expand All @@ -96,7 +96,7 @@ It is also possible to configure the generator to use target directories and a m
<plugin>
<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<executions>
<execution>
<goals>
Expand All @@ -105,7 +105,7 @@ It is also possible to configure the generator to use target directories and a m
</execution>
</executions>
<configuration>
<packageName>my.package.for.generated.service.class</packageName>
<packageName>my.generated.service</packageName>
<serviceClass>MyGeneratedServiceClass</serviceClass>
<targetFolder>target/generated-sources</targetFolder>
</configuration>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-service</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>Artifact version service definition</name>

<description>The artifact-version-service is used to collect artifact versions in the classpath.</description>
Expand Down Expand Up @@ -115,7 +115,7 @@
<plugin>
<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -232,6 +232,7 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void collectArtifacts() {
artifact = list.get(0);
Assertions.assertEquals("de.westemeyer", artifact.getGroupId());
Assertions.assertEquals("artifact-version-service", artifact.getArtifactId());
Assertions.assertEquals("1.0.0", artifact.getVersion());
Assertions.assertEquals("1.0.1", artifact.getVersion());
Assertions.assertEquals("Artifact version service definition", artifact.getName());
}

Expand Down

0 comments on commit 19d512a

Please sign in to comment.