174 lines
4.2 KiB
Plaintext
174 lines
4.2 KiB
Plaintext
|
<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>
|
||
|
|
||
|
<groupId>net.loomchild</groupId>
|
||
|
<artifactId>segment</artifactId>
|
||
|
<version>2.0.0</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>segment</name>
|
||
|
<url>https://github.com/loomchild/segment</url>
|
||
|
<description>Library used to split text into segments.</description>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<name>Jarek Lipski</name>
|
||
|
<email>pub@loomchild.net</email>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>MIT License</name>
|
||
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<scm>
|
||
|
<url>https://github.com/loomchild/segment</url>
|
||
|
<connection>scm:git:ssh://git@github.com/loomchild/segment.git</connection>
|
||
|
<developerConnection>scm:git:ssh://git@github.com/loomchild/segment.git</developerConnection>
|
||
|
<tag>2.0.0</tag>
|
||
|
</scm>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.sonatype.oss</groupId>
|
||
|
<artifactId>oss-parent</artifactId>
|
||
|
<version>7</version>
|
||
|
</parent>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
<version>1.1.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
|
||
|
<plugins>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.3</version>
|
||
|
<configuration>
|
||
|
<source>1.5</source>
|
||
|
<target>1.5</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.jvnet.jaxb2.maven2</groupId>
|
||
|
<artifactId>maven-jaxb2-plugin</artifactId>
|
||
|
<version>0.8.1</version>
|
||
|
<configuration>
|
||
|
<schemaIncludes>
|
||
|
<include>net/loomchild/segment/res/xml/srx20.xsd</include>
|
||
|
</schemaIncludes>
|
||
|
<generatePackage>net.loomchild.segment.srx.io.bind</generatePackage>
|
||
|
<cleanPackageDirectories>true</cleanPackageDirectories>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>generate-sources</phase>
|
||
|
<goals>
|
||
|
<goal>generate</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>2.8.1</version>
|
||
|
<configuration>
|
||
|
<excludePackageNames>net.loomchild.segment.srx.io.bind</excludePackageNames>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>prepare-package</phase>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<version>2.1.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>prepare-package</phase>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>2.4</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||
|
</manifest>
|
||
|
<manifestEntries>
|
||
|
<Build-Date>${maven.build.timestamp}</Build-Date>
|
||
|
</manifestEntries>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>test-jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<version>2.5.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>default</id>
|
||
|
<goals>
|
||
|
<goal>perform</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<pomFileName>segment/pom.xml</pomFileName>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
|
||
|
</build>
|
||
|
|
||
|
</project>
|