Skip to content

Commit

Permalink
github package registry deployment support
Browse files Browse the repository at this point in the history
  • Loading branch information
javatlacati committed Sep 29, 2019
1 parent 5db6f4c commit ad48744
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 31 deletions.
1 change: 1 addition & 0 deletions jcalendar-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand Down
1 change: 1 addition & 0 deletions jcalendar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand Down
71 changes: 40 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,55 +8,64 @@
<packaging>pom</packaging>
<name>JCalendar swing</name>
<description>The JCalendar Component - New Features and Bug Fixes</description>
<url>http://github.com/inqwell/JCalendar</url>
<url>http://github.com/javatlacati/jcalendar</url>

<scm>
<connection>scm:git:git://github.com/inqwell/jcalendar.git</connection>
<developerConnection>scm:git:git://github.com/inqwell/jcalendar.git</developerConnection>
<url>http://github.com/inqwell/jcalendar.git</url>
<connection>scm:git:git://github.com/javatlacati/jcalendar.git</connection>
<developerConnection>scm:git:git://github.com/javatlacati/jcalendar.git</developerConnection>
<url>http://github.com/javatlacati/jcalendar.git</url>
</scm>

<distributionManagement>
<!-- github -->
<repository>
<id>sonatype-oss-releases</id>
<name>Staging Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
<id>github</id>
<name>GitHub Javatlacati's Apache Maven Packages</name>
<url>https://maven.pkg.github.com/javatlacati/jcalendar</url>
</repository>
<snapshotRepository>
<id>sonatype-oss-snapshots</id>
<name>Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<!-- maven central
<repository>
<id>sonatype-oss-releases</id>
<name>Staging Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype-oss-snapshots</id>
<name>Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
-->
</distributionManagement>

<developers>
<developer>
<name>Kai Toedter</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Luis Miranda</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Tom Sanders</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Kai Toedter</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Luis Miranda</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Tom Sanders</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Ruslan López Carro</name>
<email>[email protected]</email>
</developer>
</developers>

<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
<distribution>repo</distribution>
</license>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<modules>
Expand Down

0 comments on commit ad48744

Please sign in to comment.