Skip to content

Commit

Permalink
releasing version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kausandr committed Apr 4, 2017
1 parent 9c3dd64 commit 5deee10
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 45 deletions.
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Eclipse project files
.project
.classpath
/.settings/
/**/.settings/

# Package Files #
*.jar
Expand All @@ -17,11 +17,12 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/.svn
/lib/
/**/bin
/**/target
/**/classes
/**/logs
/**/temp

/**/*.iml
/**/*.iml

/**/!stuff
/**/*_dev.*
91 changes: 53 additions & 38 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.jkoolcloud.tnt4j.stream.java</groupId>
<artifactId>tnt4j-stream-gc</artifactId>
<version>0.1.5</version>
<version>0.2</version>
<packaging>jar</packaging>

<name>tnt4j-stream-gc</name>
Expand Down Expand Up @@ -39,22 +39,38 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<product.vendor>jKool, LLC</product.vendor>
<release.deploy.dir>../build/${project.name}</release.deploy.dir>
<skipTests>true</skipTests>
<product.vendor>jKool, LLC</product.vendor>

<project.java.version>1.7</project.java.version>
<java.source.version>${project.java.version}</java.source.version>
<java.target.version>${project.java.version}</java.target.version>
<java.compiler.version>${project.java.version}</java.compiler.version>
<java.compiler.debuglevel>source,lines,vars</java.compiler.debuglevel>
<java.compiler.verbose>false</java.compiler.verbose>
<java.compiler.fork>false</java.compiler.fork>
<gpg.skip.sign>true</gpg.skip.sign>
<build.assemblies.phase>package</build.assemblies.phase>
</properties>

<dependencies>
<dependency>
<groupId>com.jkoolcloud</groupId>
<artifactId>tnt4j</artifactId>
<version>2.2.1-SNAPSHOT</version>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.jkoolcloud</groupId>
<artifactId>jesl</artifactId>
<version>0.1.6-SNAPSHOT</version>
<version>0.2</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>com.jkoolcloud.jesl.net</groupId>
<artifactId>tnt4j-syslogd</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand All @@ -69,33 +85,6 @@
<javadoc.failOnError>false</javadoc.failOnError>
</properties>
</profile>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
Expand All @@ -104,16 +93,20 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<version>3.6.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<verbose>${java.compiler.verbose}</verbose>
<compilerVersion>${java.compiler.version}</compilerVersion>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
<debuglevel>${java.compiler.debuglevel}</debuglevel>
<fork>${java.compiler.fork}</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -126,7 +119,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>2.10.2</version>
<configuration>
<failOnError>${javadoc.failOnError}</failOnError>
</configuration>
Expand All @@ -153,7 +146,7 @@
<executions>
<execution>
<id>deploy-assembly</id>
<phase>package</phase>
<phase>${build.assemblies.phase}</phase>
<goals>
<goal>single</goal>
</goals>
Expand Down Expand Up @@ -185,7 +178,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<version>2.6</version>
<configuration>
<archive>
<!--<index>true</index>-->
Expand All @@ -208,6 +201,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<skip>${gpg.skip.sign}</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</build>
</project>
9 changes: 6 additions & 3 deletions src/assemblies/deployAssembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>${project.build.finalName}-deploy</id>
<formats>
<format>zip</format>
<format>dir</format>
<format>zip</format>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory></baseDirectory>
Expand All @@ -18,11 +19,13 @@
</includes>
<outputDirectory>config</outputDirectory>
</fileSet>
<!-- static content -->
<fileSet>
<directory></directory>
<includes>
<include>LICENSE</include>
<include>README.md</include>
<include>LICENSE*</include>
<include>README*</include>
<include>NOTICE*</include>
</includes>
<outputDirectory></outputDirectory>
</fileSet>
Expand Down

0 comments on commit 5deee10

Please sign in to comment.