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 3793ef6 commit 5a46548
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ It is used in combination with the [artifact-version-service](https://github.com
<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 @@ -47,7 +47,7 @@ It is used in combination with the [artifact-version-service](https://github.com
<dependency>
<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-service</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>
```
Expand All @@ -59,7 +59,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 @@ -68,7 +68,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: 4 additions & 1 deletion 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-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>

<name>Maven source code generator for artifact version services.</name>
<description>The artifact-version-maven-plugin is used to automatically generate artifact version information to be collected by ArtifactVersionCollector somewhere in the classpath.</description>
Expand Down Expand Up @@ -217,6 +217,7 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.6.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
Expand All @@ -228,11 +229,13 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.0</version>
<scope>test</scope>
</dependency>

<dependency>
Expand Down

0 comments on commit 5a46548

Please sign in to comment.