Skip to content

Commit 4173f8a

Browse files
authored
Merge pull request eugenp#6400 from amit2103/BAEL-12666
[BAEL-12666] - POM Properties Cleanup
2 parents 23eecb7 + 89e39c3 commit 4173f8a

File tree

45 files changed

+25
-77
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+25
-77
lines changed

akka-http/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
<properties>
4242
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4343
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
44-
<java.version>1.8</java.version>
4544
<akka.http.version>10.0.11</akka.http.version>
4645
<akka.stream.version>2.5.11</akka.stream.version>
4746
</properties>

algorithms-genetic/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
</build>
5555

5656
<properties>
57-
<lombok.version>1.16.12</lombok.version>
5857
<commons-math3.version>3.6.1</commons-math3.version>
5958
<io.jenetics.version>3.7.0</io.jenetics.version>
6059
<org.assertj.core.version>3.9.0</org.assertj.core.version>

algorithms-miscellaneous-1/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
</reporting>
7575

7676
<properties>
77-
<lombok.version>1.16.12</lombok.version>
7877
<commons-math3.version>3.6.1</commons-math3.version>
7978
<org.assertj.core.version>3.9.0</org.assertj.core.version>
8079
<commons-codec.version>1.11</commons-codec.version>

algorithms-miscellaneous-2/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
</reporting>
8585

8686
<properties>
87-
<lombok.version>1.16.12</lombok.version>
8887
<commons-math3.version>3.6.1</commons-math3.version>
8988
<tradukisto.version>1.0.1</tradukisto.version>
9089
<org.jgrapht.core.version>1.0.1</org.jgrapht.core.version>

algorithms-sorting/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
</build>
5050

5151
<properties>
52-
<lombok.version>1.16.12</lombok.version>
5352
<commons-math3.version>3.6.1</commons-math3.version>
5453
<org.assertj.core.version>3.9.0</org.assertj.core.version>
5554
<commons-codec.version>1.11</commons-codec.version>

apache-avro/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8383
<compiler-plugin.version>3.5</compiler-plugin.version>
8484
<avro.version>1.8.2</avro.version>
85-
<java.version>1.8</java.version>
8685
<slf4j.version>1.7.25</slf4j.version>
8786
</properties>
8887

apache-curator/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>com.fasterxml.jackson.core</groupId>
4141
<artifactId>jackson-databind</artifactId>
42-
<version>${jackson-databind.version}</version>
42+
<version>${jackson.version}</version>
4343
</dependency>
4444
<!-- test scoped -->
4545
<dependency>
@@ -59,7 +59,6 @@
5959
<properties>
6060
<curator.version>4.0.1</curator.version>
6161
<zookeeper.version>3.4.11</zookeeper.version>
62-
<jackson-databind.version>2.9.7</jackson-databind.version>
6362
<!-- testing -->
6463
<assertj.version>3.6.1</assertj.version>
6564
<avaitility.version>1.7.0</avaitility.version>

apache-geode/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,14 @@
3232
<groupId>org.apache.maven.plugins</groupId>
3333
<artifactId>maven-compiler-plugin</artifactId>
3434
<configuration>
35-
<source>${maven.compiler.source}</source>
36-
<target>${maven.compiler.target}</target>
35+
<source>${java.version}</source>
36+
<target>${java.version}</target>
3737
</configuration>
3838
</plugin>
3939
</plugins>
4040
</build>
4141

4242
<properties>
4343
<geode.core>1.6.0</geode.core>
44-
<maven.compiler.source>1.8</maven.compiler.source>
45-
<maven.compiler.target>1.8</maven.compiler.target>
4644
</properties>
4745
</project>

apache-spark/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
<artifactId>maven-compiler-plugin</artifactId>
5757
<version>${maven-compiler-plugin.version}</version>
5858
<configuration>
59-
<source>${maven.compiler.source}</source>
60-
<target>${maven.compiler.target}</target>
59+
<source>${java.version}</source>
60+
<target>${java.version}</target>
6161
</configuration>
6262
</plugin>
6363
<plugin>
@@ -85,8 +85,6 @@
8585
<org.apache.spark.spark-streaming-kafka.version>2.3.0</org.apache.spark.spark-streaming-kafka.version>
8686
<com.datastax.spark.spark-cassandra-connector.version>2.3.0</com.datastax.spark.spark-cassandra-connector.version>
8787
<com.datastax.spark.spark-cassandra-connector-java.version>1.5.2</com.datastax.spark.spark-cassandra-connector-java.version>
88-
<maven.compiler.source>1.8</maven.compiler.source>
89-
<maven.compiler.target>1.8</maven.compiler.target>
9088
<maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
9189
</properties>
9290

azure/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@
127127
<docker.image.prefix>${azure.containerRegistry}.azurecr.io</docker.image.prefix>
128128
<docker-maven-plugin.version>1.1.0</docker-maven-plugin.version>
129129
<azure-webapp-maven-plugin.version>1.1.0</azure-webapp-maven-plugin.version>
130-
<java.version>1.8</java.version>
131130
</properties>
132131

133132
</project>

0 commit comments

Comments
 (0)