Skip to content

Commit

Permalink
Fix plugin warnings for maven 3.9+
Browse files Browse the repository at this point in the history
  • Loading branch information
jebeaudet committed May 29, 2023
1 parent d34f6e3 commit ecccfc7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The plugin is available on Maven central, just add this to your project or paren
<plugin>
<groupId>io.github.jebeaudet</groupId>
<artifactId>flyway-validator-maven-plugin</artifactId>
<version>0.4.1</version>
<version>0.4.2</version>
<executions>
<execution>
<goals>
Expand All @@ -41,7 +41,7 @@ This is done in the plugin configuration (default values shown here) :
<plugin>
<groupId>io.github.jebeaudet</groupId>
<artifactId>flyway-validator-maven-plugin</artifactId>
<version>0.4.1</version>
<version>0.4.2</version>
<configuration>
<rootPath>/src/main/resources</rootPath>
<sqlRevisesRootPath>db/migration</sqlRevisesRootPath>
Expand Down
23 changes: 18 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.jebeaudet</groupId>
<artifactId>flyway-validator-maven-plugin</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.4.2</version>
<packaging>maven-plugin</packaging>

<name>flyway-validator-maven-plugin</name>
Expand Down Expand Up @@ -41,11 +41,19 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
Expand All @@ -56,24 +64,29 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-jre</version>
<version>32.0.0-jre</version>
</dependency>


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<version>3.11.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -82,7 +95,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.0</version>
<version>3.9.0</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit ecccfc7

Please sign in to comment.