Skip to content

Commit 378e1cf

Browse files
committed
more sonatype pom stuff
1 parent 21eba0b commit 378e1cf

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

pom.xml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,29 @@
1818
<description>Java to HTML builder with a fluent API</description>
1919
<url>http://j2html.com</url>
2020

21+
<licenses>
22+
<license>
23+
<name>The Apache Software License, Version 2.0</name>
24+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
25+
<distribution>repo</distribution>
26+
</license>
27+
</licenses>
28+
<scm>
29+
<connection>scm:git:[email protected]:tipsy/j2html.git</connection>
30+
<developerConnection>scm:git:[email protected]:tipsy/j2html.git</developerConnection>
31+
<url>https://github.com/tipsy/j2html.git</url>
32+
<tag>HEAD</tag>
33+
</scm>
34+
<developers>
35+
<developer>
36+
<name>David Åse</name>
37+
</developer>
38+
</developers>
39+
<issueManagement>
40+
<system>GitHub Issue Tracker</system>
41+
<url>https://github.com/tipsy/j2html/issues</url>
42+
</issueManagement>
43+
2144
<properties>
2245
<jdk.version>1.8</jdk.version>
2346
<junit.version>4.11</junit.version>
@@ -76,4 +99,34 @@
7699

77100
</build>
78101

102+
<profiles>
103+
<profile>
104+
<id>sign-artifacts</id>
105+
<activation>
106+
<property>
107+
<name>sign</name>
108+
<value>true</value>
109+
</property>
110+
</activation>
111+
<build>
112+
<plugins>
113+
<plugin>
114+
<groupId>org.apache.maven.plugins</groupId>
115+
<artifactId>maven-gpg-plugin</artifactId>
116+
<version>1.6</version>
117+
<executions>
118+
<execution>
119+
<id>sign-artifacts</id>
120+
<phase>verify</phase>
121+
<goals>
122+
<goal>sign</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
127+
</plugins>
128+
</build>
129+
</profile>
130+
</profiles>
131+
79132
</project>

0 commit comments

Comments
 (0)