|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>com.github.jasminb</groupId> |
| 7 | + <parent> |
| 8 | + <groupId>org.dataconservancy</groupId> |
| 9 | + <artifactId>project-pom</artifactId> |
| 10 | + <version>8</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <groupId>org.dataconservancy.jasminb</groupId> |
8 | 14 | <artifactId>jsonapi-converter</artifactId> |
9 | 15 | <version>0.3-SNAPSHOT</version> |
10 | 16 |
|
11 | 17 | <name>JSONAPI Converter</name> |
12 | | - <description> |
13 | | - JSONAPI-Converter is a library that provides means for integrating with services using JSON API specification. |
14 | | - </description> |
| 18 | + <description>JSONAPI-Converter is a library that provides means for integrating with services using JSON API specification. This is a custom fork of the converter which contains features not found in the mainline code.</description> |
15 | 19 | <url>https://github.com/jasminb/jsonapi-converter</url> |
16 | 20 |
|
17 | 21 | <dependencies> |
|
50 | 54 |
|
51 | 55 | </dependencies> |
52 | 56 |
|
53 | | - <distributionManagement> |
54 | | - <snapshotRepository> |
55 | | - <id>ossrh</id> |
56 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
57 | | - </snapshotRepository> |
58 | | - </distributionManagement> |
59 | | - |
60 | 57 | <build> |
61 | 58 | <plugins> |
62 | 59 | <plugin> |
|
67 | 64 | <target>1.7</target> |
68 | 65 | </configuration> |
69 | 66 | </plugin> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 70 | + <version>2.9.1</version> |
| 71 | + <configuration> |
| 72 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 73 | + </configuration> |
| 74 | + </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-release-plugin</artifactId> |
| 78 | + <version>2.5.3</version> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-deploy-plugin</artifactId> |
| 83 | + <version>2.8.2</version> |
| 84 | + </plugin> |
70 | 85 | </plugins> |
71 | 86 | </build> |
72 | 87 |
|
|
78 | 93 | <plugin> |
79 | 94 | <groupId>org.apache.maven.plugins</groupId> |
80 | 95 | <artifactId>maven-source-plugin</artifactId> |
81 | | - <version>2.2.1</version> |
| 96 | + <version>3.0.1</version> |
82 | 97 | <executions> |
83 | 98 | <execution> |
84 | 99 | <id>attach-sources</id> |
|
104 | 119 | </execution> |
105 | 120 | </executions> |
106 | 121 | </plugin> |
107 | | - <plugin> |
108 | | - <groupId>org.sonatype.plugins</groupId> |
109 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
110 | | - <version>1.6.7</version> |
111 | | - <extensions>true</extensions> |
112 | | - <configuration> |
113 | | - <serverId>ossrh</serverId> |
114 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
115 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
116 | | - </configuration> |
117 | | - </plugin> |
118 | | - <plugin> |
119 | | - <groupId>org.apache.maven.plugins</groupId> |
120 | | - <artifactId>maven-gpg-plugin</artifactId> |
121 | | - <version>1.5</version> |
122 | | - <executions> |
123 | | - <execution> |
124 | | - <id>sign-artifacts</id> |
125 | | - <phase>verify</phase> |
126 | | - <goals> |
127 | | - <goal>sign</goal> |
128 | | - </goals> |
129 | | - </execution> |
130 | | - </executions> |
131 | | - </plugin> |
132 | 122 | </plugins> |
133 | 123 | </build> |
134 | 124 | </profile> |
|
142 | 132 | </licenses> |
143 | 133 |
|
144 | 134 | <scm> |
145 | | - <connection>scm:git:https://github.com/jasminb/jsonapi-converter</connection> |
146 | | - <developerConnection>scm:git:ssh://git@github.com:jasminb/jsonapi-converter.git</developerConnection> |
147 | | - <url>https://github.com/jasminb/jsonapi-converter</url> |
| 135 | + <connection>scm:git:https://github.com/DataConservancy/jsonapi-converter.git</connection> |
| 136 | + <developerConnection>scm:git:https://github.com/DataConservancy/jsonapi-converter.git</developerConnection> |
| 137 | + <url>https://github.com/DataConservancy/jsonapi-converter</url> |
| 138 | + <tag>HEAD</tag> |
148 | 139 | </scm> |
149 | 140 |
|
150 | 141 | <developers> |
|
0 commit comments