Skip to content

Commit e574aae

Browse files
authored
Merge pull request #39 from Optum/try19
Release release try 19
2 parents 1b1f3c6 + 94c9690 commit e574aae

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

pom.xml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,39 @@
1616
<module>templ-lib</module>
1717
</modules>
1818

19+
<organization>
20+
<name>Optum</name>
21+
<url>https://optum.github.io/</url>
22+
</organization>
23+
24+
<licenses>
25+
<license>
26+
<name>Apache License, Version 2.0</name>
27+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
28+
<distribution>repo</distribution>
29+
</license>
30+
</licenses>
31+
32+
<developers>
33+
<developer>
34+
<id>JohnMThayer</id>
35+
<name>John Thayer</name>
36+
<email>[email protected]</email>
37+
<organization>Optum</organization>
38+
<roles>
39+
<role>Project Lead</role>
40+
</roles>
41+
</developer>
42+
</developers>
43+
44+
<url>https://github.com/optum/templ</url>
45+
46+
<scm>
47+
<url>https://github.com/optum/templ</url>
48+
<connection>scm:git:https://github.com/optum/templ.git</connection>
49+
<developerConnection>scm:git:[email protected]:optum/templ.git</developerConnection>
50+
</scm>
51+
1952
<properties>
2053
<!-- JAVA VERSION -->
2154
<java.version>11</java.version>
@@ -176,6 +209,36 @@
176209
</configuration>
177210
</plugin>
178211

212+
<plugin>
213+
<artifactId>maven-javadoc-plugin</artifactId>
214+
<version>3.3.1</version>
215+
<executions>
216+
<execution>
217+
<id>attach-javadocs</id>
218+
<goals>
219+
<goal>jar</goal>
220+
</goals>
221+
</execution>
222+
</executions>
223+
<configuration>
224+
<release>${java.version}</release>
225+
</configuration>
226+
</plugin>
227+
228+
<plugin>
229+
<artifactId>maven-source-plugin</artifactId>
230+
<version>3.2.1</version>
231+
<executions>
232+
<execution>
233+
<id>attach-sources</id>
234+
<phase>package</phase>
235+
<goals>
236+
<goal>jar-no-fork</goal>
237+
</goals>
238+
</execution>
239+
</executions>
240+
</plugin>
241+
179242
<plugin>
180243
<groupId>org.codehaus.mojo</groupId>
181244
<artifactId>build-helper-maven-plugin</artifactId>

0 commit comments

Comments
 (0)