Skip to content

Commit

Permalink
Update foss-root to 17
Browse files Browse the repository at this point in the history
Javadoc configuration for release has been moved to the parent so this
configuration is not duplicated unnecessarily everywhere.
  • Loading branch information
caesar-ralf committed Feb 7, 2024
1 parent 891fdb7 commit 0c59e47
Showing 1 changed file with 4 additions and 41 deletions.
45 changes: 4 additions & 41 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.spotify</groupId>
<artifactId>foss-root</artifactId>
<version>16</version>
<version>17</version>
</parent>

<artifactId>missinglink-parent</artifactId>
Expand All @@ -22,15 +24,6 @@

<url>https://github.com/spotify/missinglink</url>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<organization>
<name>Spotify AB</name>
<url>http://www.spotify.com</url>
Expand Down Expand Up @@ -79,8 +72,6 @@
as a property so it can be overridden to use html for anyone who wants to generate cobertura
themselves from command-line -->
<cobertura.format>xml</cobertura.format>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<scm>
Expand All @@ -90,17 +81,6 @@
<tag>HEAD</tag>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<!-- addresses conflict between maven-core:3.3.3 and maven-dependency-tree:3.0.1 -->
Expand All @@ -125,8 +105,6 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
Expand Down Expand Up @@ -154,21 +132,6 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<show>private</show>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0c59e47

Please sign in to comment.