Skip to content

Commit

Permalink
Merge pull request #39 from Optum/try19
Browse files Browse the repository at this point in the history
Release release try 19
  • Loading branch information
JohnMThayer authored Jan 14, 2025
2 parents 1b1f3c6 + 94c9690 commit e574aae
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,39 @@
<module>templ-lib</module>
</modules>

<organization>
<name>Optum</name>
<url>https://optum.github.io/</url>
</organization>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>JohnMThayer</id>
<name>John Thayer</name>
<email>[email protected]</email>
<organization>Optum</organization>
<roles>
<role>Project Lead</role>
</roles>
</developer>
</developers>

<url>https://github.com/optum/templ</url>

<scm>
<url>https://github.com/optum/templ</url>
<connection>scm:git:https://github.com/optum/templ.git</connection>
<developerConnection>scm:git:[email protected]:optum/templ.git</developerConnection>
</scm>

<properties>
<!-- JAVA VERSION -->
<java.version>11</java.version>
Expand Down Expand Up @@ -176,6 +209,36 @@
</configuration>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>

<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand Down

0 comments on commit e574aae

Please sign in to comment.