Skip to content

Commit

Permalink
Remove pre-java17 profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
zapodot committed Jul 11, 2024
1 parent 9b5e1e6 commit a7cf6ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 25 deletions.
20 changes: 5 additions & 15 deletions embedded-db-flyway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
<artifactId>flyway-core</artifactId>
<version>${flyway.version}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-hsqldb</artifactId>
<version>${flyway.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>embedded-db-junit</artifactId>
Expand Down Expand Up @@ -68,21 +73,6 @@
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>add-flyway-hsqldb-module</id>
<activation>
<jdk>[17,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-hsqldb</artifactId>
<version>${flyway.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>
<plugin>
Expand Down
10 changes: 0 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,6 @@
</repository>
</distributionManagement>
<profiles>
<profile>
<id>java-11</id>
<activation>
<jdk>(,12]</jdk>
</activation>
<properties>
<spring-jdbc.version>5.3.37</spring-jdbc.version>
<flyway.version>9.22.3</flyway.version>
</properties>
</profile>
<profile>
<id>release</id>
<build>
Expand Down

0 comments on commit a7cf6ca

Please sign in to comment.