Skip to content

Commit

Permalink
IGNITE-22317 Revert unrelated changes, fix compilation on java 8 - Fixes
Browse files Browse the repository at this point in the history
 #280.

Signed-off-by: Aleksey Plekhanov <plehanov.alex@gmail.com>
  • Loading branch information
alex-plekhanov committed Jul 11, 2024
1 parent e932e70 commit e84b926
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 76 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prepare-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
java-version: 8
distribution: 'adopt'

- name: Extract POM Version and Compare With Branch Version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
java-version: 8
distribution: 'adopt'

- name: Extract Branch POM Version and Compare
Expand Down
3 changes: 2 additions & 1 deletion modules/spring-session-ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
<url>https://ignite.apache.org</url>

<properties>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<spring.session.version>3.2.2</spring.session.version>
<spring.security.version>6.2.4</spring.security.version>
Expand Down
4 changes: 3 additions & 1 deletion modules/spring-tx-ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
<url>https://ignite.apache.org</url>

<properties>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<xstream.version>1.4.8</xstream.version>
</properties>

Expand Down
72 changes: 0 additions & 72 deletions parent-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,27 +99,6 @@
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclet>capital.scalable.restdocs.jsondoclet.ExtractDocumentationAsJsonDoclet</doclet>
<docletArtifact>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-json-doclet-jdk9</artifactId>
<version>2.0.11</version>
</docletArtifact>
<destDir>generated-javadoc-json</destDir>
<reportOutputDirectory>${basedir}${docDirectory}/report</reportOutputDirectory>
<useStandardDocletOptions>false</useStandardDocletOptions>
<show>package</show>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -307,56 +286,5 @@
</plugins>
</build>
</profile>
<profile>
<id>tools.jar-default</id>
<activation>
<file>
<exists>${java.home}/../lib/tools.jar</exists>
</file>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<scope>system</scope>
<version>${java.version}</version>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
<profile>
<id>tools.jar-mac</id>
<activation>
<file>
<exists>${java.home}/../Classes/classes.jar</exists>
</file>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<scope>system</scope>
<version>${java.version}</version>
<systemPath>${java.home}/../Classes/classes.jar</systemPath>
</dependency>
</dependencies>
</profile>
<profile>
<id>tools.jar-j9</id>
<activation>
<file>
<exists>${java.home}/lib/tools.jar</exists>
</file>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<scope>system</scope>
<version>${java.version}</version>
<systemPath>${java.home}/lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

0 comments on commit e84b926

Please sign in to comment.