Skip to content

Commit

Permalink
Add org, license info
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jul 6, 2020
1 parent c50d282 commit ff76e60
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,41 @@
</parent>

<artifactId>jackson-bom</artifactId>
<name>Jackson Bill of Materials</name>
<description>Build of Materials pom for getting full, complete set of compatible versions
of Jackson components maintained by FasterXML.com
</description>
<version>2.11.2-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<module>base</module> <!-- "It's all about the base 'bout the base..." -->
</modules>

<organization>
<name>FasterXML</name>
<url>http://fasterxml.com/</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>cowtowncoder</id>
<name>Tatu Saloranta</name>
<email>[email protected]</email>
</developer>
</developers>

<url>https://github.com/FasterXML/jackson-bom</url>
<scm>
<connection>scm:git:[email protected]:FasterXML/jackson-bom.git</connection>
<developerConnection>scm:git:[email protected]:FasterXML/jackson-bom.git</developerConnection>
<url>http://github.com/FasterXML/jackson-bom</url>
<url>https://github.com/FasterXML/jackson-bom</url>
<tag>HEAD</tag>
</scm>

Expand Down Expand Up @@ -317,4 +340,15 @@
</dependencies>
</dependencyManagement>

<!-- Alas, need to include snapshot reference since otherwise can not find
snapshot of parent... -->
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>

0 comments on commit ff76e60

Please sign in to comment.