Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mate Lang committed Feb 9, 2018
1 parent a12cced commit 01c73fb
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 19 deletions.
4 changes: 2 additions & 2 deletions handyman-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>io.smartup.handyman</groupId>
<artifactId>handyman-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../handyman-parent</relativePath>
</parent>

<artifactId>handyman-core</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<url>https://github.com/smartupio/handyman</url>

Expand Down
7 changes: 6 additions & 1 deletion handyman-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.smartup.handyman</groupId>
<artifactId>handyman-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>Handyman Parent</name>
Expand Down Expand Up @@ -40,6 +40,11 @@
</repository>
</distributionManagement>

<scm>
<url>https://github.com/smartupio/content-service</url>
<connection>scm:git:[email protected]:smartupio/content-service.git</connection>
</scm>

<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions handyman-s3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>io.smartup.handyman</groupId>
<artifactId>handyman-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../handyman-parent</relativePath>
</parent>

<artifactId>handyman-s3</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>Handyman S3</name>
Expand Down
29 changes: 22 additions & 7 deletions handyman-sample/pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.smartup.handyman</groupId>
<artifactId>handyman-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../handyman-parent</relativePath>
</parent>

<artifactId>handyman-sample</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>Handyman Sample</name>
Expand Down Expand Up @@ -78,12 +78,27 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
<skipRemoteStaging>true</skipRemoteStaging>
</configuration>
</plugin>
</plugins>
Expand Down
4 changes: 2 additions & 2 deletions handyman-zuul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>io.smartup.handyman</groupId>
<artifactId>handyman-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../handyman-parent</relativePath>
</parent>

<artifactId>handyman-zuul</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>Handyman Zuul</name>
Expand Down
73 changes: 68 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.smartup.handyman</groupId>
<artifactId>handyman-aggregator</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>Handyman Aggregator</name>
Expand All @@ -22,6 +22,17 @@
</developer>
</developers>

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

<licenses>
<license>
<name>Apache License Version 2.0</name>
Expand All @@ -34,6 +45,11 @@
<connection>scm:git:[email protected]:smartupio/content-service.git</connection>
</scm>

<properties>
<sonatype.nexusstaging.plugin.version>1.6.8</sonatype.nexusstaging.plugin.version>
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
</properties>

<modules>
<module>handyman-parent</module>
<module>handyman-core</module>
Expand All @@ -44,14 +60,61 @@

<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${sonatype.nexusstaging.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>${skip.artifactdeploy}</skipNexusStagingDeployMojo>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>true</skip>
<skip>${skip.codesigning}</skip>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<skip.codesigning>true</skip.codesigning>
<skip.artifactdeploy>true</skip.artifactdeploy>
</properties>
</profile>

<profile>
<id>release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<skip.codesigning>false</skip.codesigning>
<skip.artifactdeploy>false</skip.artifactdeploy>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 01c73fb

Please sign in to comment.