Merge pull request #21 from hce/fix-build-resource-bundle
[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 <resource>
49 <directory>src</directory>
50 <excludes>
51 <exclude>**/*.java</exclude>
52 </excludes>
53 </resource>
54 </resources>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-compiler-plugin</artifactId>
59 <version>3.1</version>
60 <configuration>
61 <source>1.6</source>
62 <target>1.6</target>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67
68 <distributionManagement>
69 <snapshotRepository>
70 <id>ossrh</id>
71 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
72 </snapshotRepository>
73 </distributionManagement>
74
75 <profiles>
76 <profile>
77 <id>release</id>
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-source-plugin</artifactId>
83 <version>2.2.1</version>
84 <executions>
85 <execution>
86 <id>attach-sources</id>
87 <goals>
88 <goal>jar-no-fork</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-javadoc-plugin</artifactId>
96 <version>2.9.1</version>
97 <executions>
98 <execution>
99 <id>attach-javadocs</id>
100 <goals>
101 <goal>jar</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
106
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-gpg-plugin</artifactId>
110 <version>1.5</version>
111 <executions>
112 <execution>
113 <id>sign-artifacts</id>
114 <phase>verify</phase>
115 <goals>
116 <goal>sign</goal>
117 </goals>
118 </execution>
119 </executions>
120 </plugin>
121 </plugins>
122 </build>
123 </profile>
124 </profiles>
125
126 <developers>
127 <developer>
128 <id>klamonte</id>
129 <name>Kevin Lamonte</name>
130 <email>kevin.lamonte@gmail.com</email>
131 </developer>
132 </developers>
133 </project>