dev version bump to 0.0.6
[nikiroo-utils.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>com.github.klamonte</groupId>
6 <artifactId>jexer</artifactId>
7 <packaging>jar</packaging>
8 <name>Jexer</name>
9 <description>Java Text User Interface library that resembles Turbo Vision</description>
10 <version>0.0.6</version>
11 <url>https://github.com/klamonte/jexer</url>
12
13 <licenses>
14 <license>
15 <name>MIT License</name>
16 <url>http://www.opensource.org/licenses/mit-license.php</url>
17 <distribution>repo</distribution>
18 </license>
19 </licenses>
20
21 <properties>
22 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24 </properties>
25
26 <scm>
27 <connection>scm:git:https://github.com/klamonte/jexer.git</connection>
28 <developerConnection>scm:git:https://github.com/klamonte/jexer.git</developerConnection>
29 <url>https://github.com/klamonte/jexer</url>
30 <tag>HEAD</tag>
31 </scm>
32
33 <issueManagement>
34 <system>github</system>
35 <url>https://github.com/klamonte/jexer/issues</url>
36 </issueManagement>
37
38 <build>
39 <sourceDirectory>${project.basedir}/src</sourceDirectory>
40 <resources>
41 <resource>
42 <directory>${project.basedir}/resources</directory>
43 <filtering>false</filtering>
44 <includes>
45 <include>**/*</include>
46 </includes>
47 </resource>
48 </resources>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-compiler-plugin</artifactId>
53 <version>3.1</version>
54 <configuration>
55 <source>1.6</source>
56 <target>1.6</target>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61
62 <distributionManagement>
63 <snapshotRepository>
64 <id>ossrh</id>
65 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
66 </snapshotRepository>
67 </distributionManagement>
68
69 <profiles>
70 <profile>
71 <id>release</id>
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-source-plugin</artifactId>
77 <version>2.2.1</version>
78 <executions>
79 <execution>
80 <id>attach-sources</id>
81 <goals>
82 <goal>jar-no-fork</goal>
83 </goals>
84 </execution>
85 </executions>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-javadoc-plugin</artifactId>
90 <version>2.9.1</version>
91 <executions>
92 <execution>
93 <id>attach-javadocs</id>
94 <goals>
95 <goal>jar</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-gpg-plugin</artifactId>
104 <version>1.5</version>
105 <executions>
106 <execution>
107 <id>sign-artifacts</id>
108 <phase>verify</phase>
109 <goals>
110 <goal>sign</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 </plugins>
116 </build>
117 </profile>
118 </profiles>
119
120 <developers>
121 <developer>
122 <id>klamonte</id>
123 <name>Kevin Lamonte</name>
124 <email>kevin.lamonte@gmail.com</email>
125 </developer>
126 </developers>
127 </project>