Skip to content

Commit

Permalink
66: Replace Bintray/JCenter in Library build settings
Browse files Browse the repository at this point in the history
Task-Url: #66
  • Loading branch information
keilw committed Feb 20, 2021
1 parent 3b7892e commit 3f3bc8d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assertj/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</organization>
<licenses>
<license>
<name>BSD</name>
<name>BSD-3-Clause</name>
<url>LICENSE</url>
</license>
</licenses>
Expand Down
28 changes: 27 additions & 1 deletion jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</parent>
<artifactId>uom-lib-jackson</artifactId>
<name>Units of Measurement Jackson Library</name>
<version>2.1-SNAPSHOT</version>
<description>Contains custom serializers and deserializers for JSR 385</description>
<organization>
<name>Units of Measurement project</name>
Expand Down Expand Up @@ -219,5 +220,30 @@
</plugins>
</pluginManagement>
</build>
<version>2.1-SNAPSHOT</version>

<!-- TODO could be removed later after switch to 2.1.1 -->
<!-- Additional repositories -->
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>ossrh-snapshot</id>
<name>OSSRH Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>ossrh</id>
<name>OSSRH</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<name>OSSRH Snapshot</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
3 changes: 2 additions & 1 deletion src/main/config/uom-lib clean install.launch
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"/>
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-14"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:uom-lib}"/>
</launchConfiguration>
30 changes: 28 additions & 2 deletions yasson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<artifactId>uom-lib-yasson</artifactId>
<name>Units of Measurement Jakarta JSON-B Library</name>
<description>Contains custom serializers and deserializers for JSR 385</description>
<version>2.1-SNAPSHOT</version>
<organization>
<name>Units of Measurement project</name>
<url>https://unitsofmeasurement.github.io</url>
Expand Down Expand Up @@ -211,6 +212,31 @@
</plugin>
</plugins>
</pluginManagement>
</build>
<version>2.1-SNAPSHOT</version>
</build>

<!-- TODO could be removed later after switch to 2.1.1 -->
<!-- Additional repositories -->
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>ossrh-snapshot</id>
<name>OSSRH Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

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

0 comments on commit 3f3bc8d

Please sign in to comment.