Preparing for maven central publish

This commit is contained in:
Klemek
2019-01-20 18:08:46 +01:00
parent 66938996d8
commit b6f403fb6f
3 changed files with 170 additions and 21 deletions
+10 -19
View File
@@ -1,13 +1,15 @@
# Simple Logger # Simple Logger
[![Build Status](https://travis-ci.org/Klemek/SimpleLogger.svg?branch=master)](https://travis-ci.org/Klemek/SimpleLogger) [![Maven Central](https://img.shields.io/maven-central/v/com.github.klemek/simple-logger.svg)](https://search.maven.org/search?q=g:%22com.github.klemek%22%20AND%20a:%22simple-logger%22)
[![Build Status](https://img.shields.io/travis/Klemek/SimpleLogger.svg?style=popout)](https://travis-ci.org/Klemek/SimpleLogger)
[![Coverage Status](https://img.shields.io/coveralls/github/Klemek/SimpleLogger.svg)](https://coveralls.io/github/Klemek/SimpleLogger?branch=master)
![License](https://img.shields.io/github/license/Klemek/SimpleLogger.svg)
A simple but useful Java logger to use everywhere. A simple but useful Java logger to use everywhere.
Current version v1.3.1 Current version v1.3.1
## Download ## Download
* [simple-logger-1.3.1.jar](../../raw/master/download/simple-logger-1.3.1.jar) [simple-logger-1.3.1.jar](../../releases/download/simple-logger-1.3.1/simple-logger-1.3.1.jar)
## How to use ## How to use
@@ -74,20 +76,9 @@ This will show the following :
You can use this project as a maven dependency with this : You can use this project as a maven dependency with this :
```XML ```XML
<repositories> <dependency>
... <groupId>com.github.klemek</groupId>
<repository> <artifactId>simple-logger</artifactId>
<id>fr.klemek</id> <version>1.3.1</version>
<url>https://github.com/klemek/mvn-repo/raw/master</url> </dependency>
</repository>
</repositories>
...
<dependencies>
...
<dependency>
<groupId>fr.klemek</groupId>
<artifactId>simple-logger</artifactId>
<version>1.3.1</version>
</dependency>
</dependencies>
``` ```
Binary file not shown.
+160 -2
View File
@@ -4,11 +4,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>fr.klemek</groupId> <groupId>com.github.klemek</groupId>
<artifactId>simple-logger</artifactId> <artifactId>simple-logger</artifactId>
<version>1.3.1</version> <version>1.3.1-SNAPSHOT</version>
<name>SimpleLogger</name> <name>SimpleLogger</name>
<description>A simple but useful Java logger</description>
<url>https://github.com/Klemek/SimpleLogger</url>
<developers>
<developer>
<id>klemek</id>
<name>Kleme K</name>
<email>klemek@outlook.fr</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License</name>
<url>../LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -77,7 +93,149 @@
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version> <version>2.22.0</version>
</plugin> </plugin>
<!-- Maven central deployment -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Unit tests coverage -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<configuration>
<append>true</append>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
</plugin>
</plugins> </plugins>
</build> </build>
<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>
<scm>
<connection>scm:git:git://github.com/klemek/simplelogger.git</connection>
<developerConnection>scm:git:git@github.com:klemek/simplelogger.git</developerConnection>
<url>https://github.com/klemek/simplelogger</url>
<tag>HEAD</tag>
</scm>
<profiles>
<!-- GPG Signature on release -->
<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.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project> </project>