Skip to content

Commit 596b0c5

Browse files
committed
Update parent pom, switch to sonatype
1 parent ec0b373 commit 596b0c5

Some content is hidden

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

55 files changed

+73
-102
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ cache:
88
directories: "$HOME/.m2/repository"
99

1010
install:
11-
- echo "<settings><servers><server><id>bintray</id><username>\${env.BINTRAY_USER}</username><password>\${env.BINTRAY_KEY}</password></server></servers></settings>" > ~/.m2/settings.xml
12-
- if [[ $TRAVIS_PULL_REQUEST = false ]] && [[ $TRAVIS_BRANCH = master ]] || [[ $TRAVIS_TAG = v* ]]; then GOAL=deploy; else GOAL=install; fi
13-
- if [[ $TRAVIS_TAG = v* ]]; then ADDITIONAL_PROFILES=release; mvn -q -U install org.seedstack:seedstack-maven-plugin:LATEST:release; else ADDITIONAL_PROFILES=snapshots; fi
11+
- echo "<settings><servers><server><id>ossrh</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASSWORD}</password></server></servers></settings>" > ~/.m2/settings.xml
12+
- if [[ $TRAVIS_PULL_REQUEST = false ]] && [[ $TRAVIS_BRANCH = master || $TRAVIS_BRANCH = dev-* ]] || [[ $TRAVIS_TAG = v* ]]; then GOAL=deploy; else GOAL=install; fi
13+
- if [[ $TRAVIS_TAG = v* ]]; then ADDITIONAL_PROFILES=release; mvn -q -U org.seedstack:seedstack-maven-plugin:release; fi
1414

15-
script: mvn -q -U -Pbintray,javadoc,$ADDITIONAL_PROFILES $GOAL
15+
script: mvn -U -Pjavadoc,$ADDITIONAL_PROFILES $GOAL

CHANGELOG.md

Lines changed: 4 additions & 0 deletions

pom.xml

Lines changed: 13 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
4+
Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
55
66
This Source Code Form is subject to the terms of the Mozilla Public
77
License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -14,12 +14,12 @@
1414
<parent>
1515
<groupId>org.seedstack.poms</groupId>
1616
<artifactId>parent-internal</artifactId>
17-
<version>3.4.10</version>
17+
<version>4.0.0-SNAPSHOT</version>
1818
</parent>
1919

2020
<groupId>org.seedstack</groupId>
2121
<artifactId>seedstack-maven-plugin</artifactId>
22-
<version>2.7.6-SNAPSHOT</version>
22+
<version>2.8.0-SNAPSHOT</version>
2323
<packaging>maven-plugin</packaging>
2424

2525
<properties>
@@ -290,49 +290,16 @@
290290
</dependency>
291291
</dependencies>
292292

293-
<pluginRepositories>
294-
<pluginRepository>
295-
<snapshots>
293+
<repositories>
294+
<repository>
295+
<id>oss.sonatype.org-snapshot</id>
296+
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
297+
<releases>
296298
<enabled>false</enabled>
299+
</releases>
300+
<snapshots>
301+
<enabled>true</enabled>
297302
</snapshots>
298-
<id>bintray-jfrog-jfrog-jars</id>
299-
<name>bintray-plugins</name>
300-
<url>http://dl.bintray.com/jfrog/jfrog-jars</url>
301-
</pluginRepository>
302-
</pluginRepositories>
303-
304-
<profiles>
305-
<profile>
306-
<id>snapshots</id>
307-
<repositories>
308-
<repository>
309-
<snapshots>
310-
<enabled>true</enabled>
311-
</snapshots>
312-
<releases>
313-
<enabled>false</enabled>
314-
</releases>
315-
<id>ojo-libs-snapshot</id>
316-
<name>ojo-snapshots</name>
317-
<url>https://oss.jfrog.org/artifactory/libs-snapshot</url>
318-
</repository>
319-
</repositories>
320-
</profile>
321-
<profile>
322-
<id>bintray</id>
323-
<repositories>
324-
<repository>
325-
<snapshots>
326-
<enabled>false</enabled>
327-
</snapshots>
328-
<releases>
329-
<enabled>true</enabled>
330-
</releases>
331-
<id>bintray</id>
332-
<name>bintray</name>
333-
<url>http://dl.bintray.com/seedstack/jars</url>
334-
</repository>
335-
</repositories>
336-
</profile>
337-
</profiles>
303+
</repository>
304+
</repositories>
338305
</project>

src/license/THIRD-PARTY.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Please fill the missing licenses for dependencies :
1414
#
1515
#
16-
#Mon May 03 12:21:52 CEST 2021
16+
#Tue May 04 12:18:10 CEST 2021
1717
classworlds--classworlds--1.1-alpha-2=
1818
org.codehaus.plexus--plexus-container-default--1.0-alpha-9-stable-1=
1919
jdom--jdom--1.0=

src/main/java/SeedStackCaplet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/maven/AbstractExecutableMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/maven/AbstractSeedStackMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/maven/CheckMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/maven/ConfigMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

src/main/java/org/seedstack/maven/Context.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2013-2020, The SeedStack authors <http://seedstack.org>
2+
* Copyright © 2013-2021, The SeedStack authors <http://seedstack.org>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

0 commit comments

Comments
 (0)