-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove configurations for maven deploy and maven release plugins from pom files. These plugins only complicated the release process. Return to the release script for now. Change the modules not to have a parent pom anymore. Change parent pom to be just a "master" POM that builds both modules in the repository. It shouldn't end up on Maven Central anymore. Fix #48
- Loading branch information
Showing
4 changed files
with
19 additions
and
103 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
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 |
---|---|---|
|
@@ -3,62 +3,13 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.eclipsesource.minimal-json</groupId> | ||
<artifactId>parent</artifactId> | ||
<artifactId>build</artifactId> | ||
<version>0.9.4-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>parent</name> | ||
|
||
<modules> | ||
<module>com.eclipsesource.json</module> | ||
<module>com.eclipsesource.json.performancetest</module> | ||
</modules> | ||
|
||
<scm> | ||
<url>https://github.com/ralfstx/minimal-json</url> | ||
<connection>scm:git:[email protected]:ralfstx/minimal-json.git</connection> | ||
<developerConnection>scm:git:[email protected]:ralfstx/minimal-json.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>sonatype-nexus-snapshots</id> | ||
<name>Sonatype Nexus Snapshots</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>sonatype-nexus-staging</id> | ||
<name>Nexus Release Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.4</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>2.4</version> | ||
<configuration> | ||
<!-- needed to enable make gpg signing --> | ||
<mavenExecutorId>forked-path</mavenExecutorId> | ||
<tagNameFormat>@{project.version}</tagNameFormat> | ||
<arguments>-Duser.name="@{user.name}"</arguments> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
</project> |