Skip to content

Commit

Permalink
Revert "Fix maven build"
Browse files Browse the repository at this point in the history
  • Loading branch information
Plyha authored Aug 4, 2024
1 parent 9f8c9c8 commit 1d01862
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
21 changes: 9 additions & 12 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<description>The essentials of Spark, including the user interface and startup scripts, excluding most optional components</description>

<properties>
<bouncycastle.version>1.78.1</bouncycastle.version>
<bouncycastle.version>1.70</bouncycastle.version>
</properties>

<build>
Expand All @@ -24,9 +24,6 @@
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/spark.properties</include>
</includes>
</resource>
</resources>
<plugins>
Expand All @@ -43,7 +40,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<version>3.1.1</version>
<configuration>
<archive>
<manifest>
Expand Down Expand Up @@ -164,17 +161,17 @@
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.4</version>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.2.3</version>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.15.0</version>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.swinglabs.swingx</groupId>
Expand Down Expand Up @@ -221,21 +218,21 @@
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.20</version>
<version>0.4.18</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-jdk18on</artifactId>
<artifactId>bctls-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dependency.smack.version>4.4.8</dependency.smack.version>
<dependency.smack.version>4.4.6</dependency.smack.version>
</properties>

<build>
Expand Down

0 comments on commit 1d01862

Please sign in to comment.