Skip to content

Commit

Permalink
fixed version 1.1.0g for upload on clojars
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Hartmann committed Aug 29, 2016
1 parent 35953ba commit 2833822
Show file tree
Hide file tree
Showing 27 changed files with 1,794 additions and 256 deletions.
Binary file added 1.1.0g-SNAPSHOT.jar
Binary file not shown.
144 changes: 12 additions & 132 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.thinkaurelius.titan</groupId>
<groupId>gorillalabs</groupId>
<artifactId>titan</artifactId>
<version>1.1.0g-SNAPSHOT</version>
<version>1.1.0g</version>
<packaging>pom</packaging>
<prerequisites>
<maven>2.2.1</maven>
Expand Down Expand Up @@ -57,9 +52,9 @@
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:thinkaurelius/titan.git</connection>
<developerConnection>scm:git:git@github.com:thinkaurelius/titan.git</developerConnection>
<url>git@github.com:thinkaurelius/titan.git</url>
<connection>scm:git:git@github.com:gorillalabs/titan.git</connection>
<developerConnection>scm:git:git@github.com:gorillalabs/titan.git</developerConnection>
<url>git@github.com:gorillalabs/titan.git</url>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down Expand Up @@ -133,19 +128,6 @@
<module>titan-doc</module>
<module>titan-solr</module>
</modules>
<repositories>
<repository>
<id>apache-snapshots</id>
<name>repository.apache.org snapshots</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<directory>${basedir}/target</directory>
<plugins>
Expand Down Expand Up @@ -203,7 +185,6 @@
operation should be encapsulated with the
profile id listed below.
-->
<releaseProfiles>aurelius-release</releaseProfiles>

<!-- Keep all submodules at same version as parent -->
<autoVersionSubmodules>true</autoVersionSubmodules>
Expand Down Expand Up @@ -1026,116 +1007,8 @@
</dependencies>

<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>aurelius-release</id>
<!--
Sign artifacts artifacts only during release:perform
when this profile is automatically activated or whenever
else it is manually activated.
Stolen from: http://blog.sonatype.com/people/2010/01/how-to-generate-pgp-signatures-with-maven/
-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- Quiet mode still shows warnings and errors -->
<quiet>true</quiet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<useAgent>true</useAgent>
<skip>${gpg.skip}</skip>
<excludes>
<exclude>*.asc</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>sonar-upload</id>
<properties>
<sonar.jacoco.reportPath>../target/jacoco-combined.exec</sonar.jacoco.reportPath>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
</properties>
</profile>

<profile>
<id>hadoop1</id>
Expand Down Expand Up @@ -1776,4 +1649,11 @@
</profile>
-->
</profiles>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Titan</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
</project>

0 comments on commit 2833822

Please sign in to comment.