Skip to content

Commit

Permalink
Add pom.xml for the maven central repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
javadev committed Mar 14, 2015
1 parent 2d86ba6 commit 4a82512
Showing 1 changed file with 119 additions and 0 deletions.
119 changes: 119 additions & 0 deletions pom-central.xml
@@ -0,0 +1,119 @@
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.javadev</groupId>
<artifactId>jregexp</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>JRegExp application</name>
<description>The swing applicationn to check regexp expressios</description>
<url>https://github.com/javadev/jregexp</url>

<developers>
<developer>
<name>Valentyn Kolesnikov</name>
</developer>
</developers>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:git://github.com/javadev/jregexp.git</connection>
<developerConnection>scm:git:git://github.com/javadev/jregexp.git</developerConnection>
<url>https://github.com/javadev/jregexp</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/javadev/jregexp</url>
</ciManagement>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/javadev/jregexp</url>
</issueManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>com.github.jregexp.JRegExp</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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.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-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.java.dev.swing-layout</groupId>
<artifactId>swing-layout</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>

0 comments on commit 4a82512

Please sign in to comment.