forked from inqwell/jcalendar
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github package registry deployment support
- Loading branch information
1 parent
5db6f4c
commit ad48744
Showing
3 changed files
with
42 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|