|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - <groupId>com.google.code.gson</groupId> |
| 5 | + <parent> |
| 6 | + <groupId>com.google.code.gson</groupId> |
| 7 | + <artifactId>gson-parent</artifactId> |
| 8 | + <version>2.8.9-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + |
4 | 11 | <artifactId>gson-extras</artifactId>
|
5 | 12 | <packaging>jar</packaging>
|
6 | 13 | <version>1.0-SNAPSHOT</version>
|
7 | 14 | <inceptionYear>2008</inceptionYear>
|
8 | 15 | <name>Gson Extras</name>
|
9 |
| - <parent> |
10 |
| - <groupId>org.sonatype.oss</groupId> |
11 |
| - <artifactId>oss-parent</artifactId> |
12 |
| - <version>9</version> |
13 |
| - </parent> |
14 |
| - <url>http://code.google.com/p/google-gson/</url> |
15 | 16 | <description>Google Gson grab bag of utilities, type adapters, etc.</description>
|
16 |
| - <properties> |
17 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 |
| - </properties> |
| 17 | + |
19 | 18 | <licenses>
|
20 | 19 | <license>
|
21 |
| - <name>The Apache Software License, Version 2.0</name> |
22 |
| - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
23 |
| - <distribution>repo</distribution> |
| 20 | + <name>Apache-2.0</name> |
| 21 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
24 | 22 | </license>
|
25 | 23 | </licenses>
|
26 |
| - <scm> |
27 |
| - <connection>scm:svn:http://google-gson.googlecode.com/svn/trunk/extras</connection> |
28 |
| - <developerConnection>scm:svn:https://google-gson.googlecode.com/svn/trunk/extras</developerConnection> |
29 |
| - <url>http://google-gson.codegoogle.com/svn/trunk/extras</url> |
30 |
| - </scm> |
31 |
| - <issueManagement> |
32 |
| - <system>Google Code Issue Tracking</system> |
33 |
| - <url>http://code.google.com/p/google-gson/issues/list</url> |
34 |
| - </issueManagement> |
| 24 | + |
35 | 25 | <organization>
|
36 | 26 | <name>Google, Inc.</name>
|
37 |
| - <url>http://www.google.com</url> |
| 27 | + <url>https://www.google.com</url> |
38 | 28 | </organization>
|
| 29 | + |
39 | 30 | <dependencies>
|
40 | 31 | <dependency>
|
41 | 32 | <groupId>com.google.code.gson</groupId>
|
42 | 33 | <artifactId>gson</artifactId>
|
43 |
| - <version>2.7</version> |
44 |
| - <scope>compile</scope> |
| 34 | + <version>${project.parent.version}</version> |
45 | 35 | </dependency>
|
46 | 36 | <dependency>
|
47 | 37 | <groupId>javax.annotation</groupId>
|
|
51 | 41 | <dependency>
|
52 | 42 | <groupId>junit</groupId>
|
53 | 43 | <artifactId>junit</artifactId>
|
54 |
| - <version>4.13.1</version> |
55 | 44 | <scope>test</scope>
|
56 | 45 | </dependency>
|
57 | 46 | </dependencies>
|
58 |
| - <profiles> |
59 |
| - <!-- Activate PGP signing only when performing a release --> |
60 |
| - <profile> |
61 |
| - <id>release-sign-artifacts</id> |
62 |
| - <activation> |
63 |
| - <property> |
64 |
| - <name>performRelease</name> |
65 |
| - <value>true</value> |
66 |
| - </property> |
67 |
| - </activation> |
68 |
| - <build> |
69 |
| - <plugins> |
70 |
| - <plugin> |
71 |
| - <groupId>org.apache.maven.plugins</groupId> |
72 |
| - <artifactId>maven-gpg-plugin</artifactId> |
73 |
| - <version>1.5</version> |
74 |
| - <executions> |
75 |
| - <execution> |
76 |
| - <id>sign-artifacts</id> |
77 |
| - <phase>verify</phase> |
78 |
| - <goals> |
79 |
| - <goal>sign</goal> |
80 |
| - </goals> |
81 |
| - </execution> |
82 |
| - </executions> |
83 |
| - </plugin> |
84 |
| - </plugins> |
85 |
| - </build> |
86 |
| - </profile> |
87 |
| - </profiles> |
| 47 | + |
88 | 48 | <build>
|
89 |
| - <defaultGoal>package</defaultGoal> |
90 |
| - <plugins> |
91 |
| - <plugin> |
92 |
| - <groupId>org.apache.maven.plugins</groupId> |
93 |
| - <artifactId>maven-compiler-plugin</artifactId> |
94 |
| - <version>3.5.1</version> |
95 |
| - <configuration> |
96 |
| - <source>1.6</source> |
97 |
| - <target>1.6</target> |
98 |
| - </configuration> |
99 |
| - </plugin> |
100 |
| - <plugin> |
101 |
| - <groupId>org.apache.maven.plugins</groupId> |
102 |
| - <artifactId>maven-jar-plugin</artifactId> |
103 |
| - <version>3.0.2</version> |
104 |
| - <executions> |
105 |
| - <execution> |
106 |
| - <phase>package</phase> |
107 |
| - <goals> |
108 |
| - <goal>jar</goal> |
109 |
| - </goals> |
110 |
| - </execution> |
111 |
| - </executions> |
112 |
| - <configuration> |
113 |
| - <archive> |
114 |
| - <addMavenDescriptor>false</addMavenDescriptor> |
115 |
| - </archive> |
116 |
| - </configuration> |
117 |
| - </plugin> |
118 |
| - <plugin> |
119 |
| - <groupId>org.apache.maven.plugins</groupId> |
120 |
| - <artifactId>maven-source-plugin</artifactId> |
121 |
| - <version>3.0.1</version> |
122 |
| - <executions> |
123 |
| - <execution> |
124 |
| - <id>attach-sources</id> |
125 |
| - <phase>verify</phase> |
126 |
| - <goals> |
127 |
| - <goal>jar</goal> |
128 |
| - </goals> |
129 |
| - </execution> |
130 |
| - </executions> |
131 |
| - </plugin> |
132 |
| - <plugin> |
133 |
| - <groupId>org.apache.maven.plugins</groupId> |
134 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
135 |
| - <version>2.10.4</version> |
136 |
| - <executions> |
137 |
| - <execution> |
138 |
| - <id>attach-javadocs</id> |
139 |
| - <goals> |
140 |
| - <goal>jar</goal> |
141 |
| - </goals> |
142 |
| - </execution> |
143 |
| - </executions> |
144 |
| - <configuration> |
145 |
| - <links> |
146 |
| - <link>http://download.oracle.com/javase/1.5.0/docs/api/</link> |
147 |
| - </links> |
148 |
| - <version>true</version> |
149 |
| - <show>public</show> |
150 |
| - </configuration> |
151 |
| - </plugin> |
152 |
| - <plugin> |
153 |
| - <groupId>org.apache.maven.plugins</groupId> |
154 |
| - <artifactId>maven-eclipse-plugin</artifactId> |
155 |
| - <version>2.10</version> |
156 |
| - <configuration> |
157 |
| - <downloadSources>true</downloadSources> |
158 |
| - <downloadJavadocs>true</downloadJavadocs> |
159 |
| - <workspace> |
160 |
| - ../eclipse-ws/ |
161 |
| - </workspace> |
162 |
| - <workspaceCodeStylesURL> |
163 |
| - file:///${basedir}/../lib/gson-formatting-styles.xml |
164 |
| - </workspaceCodeStylesURL> |
165 |
| - </configuration> |
166 |
| - </plugin> |
167 |
| - <plugin> |
168 |
| - <groupId>org.apache.maven.plugins</groupId> |
169 |
| - <artifactId>maven-release-plugin</artifactId> |
170 |
| - <!-- version>2.3.2</version --> |
171 |
| - <configuration> |
172 |
| - <arguments>-DenableCiProfile=true</arguments> |
173 |
| - <tagBase>https://google-gson.googlecode.com/svn/tags/</tagBase> |
174 |
| - </configuration> |
175 |
| - </plugin> |
176 |
| - </plugins> |
| 49 | + <pluginManagement> |
| 50 | + <plugins> |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.maven.plugins</groupId> |
| 53 | + <artifactId>maven-deploy-plugin</artifactId> |
| 54 | + <version>3.0.0-M1</version> |
| 55 | + <configuration> |
| 56 | + <!-- Currently not deployed --> |
| 57 | + <skip>true</skip> |
| 58 | + </configuration> |
| 59 | + </plugin> |
| 60 | + </plugins> |
| 61 | + </pluginManagement> |
177 | 62 | </build>
|
| 63 | + |
178 | 64 | <developers>
|
179 | 65 | <developer>
|
180 | 66 | <name>Inderjeet Singh</name>
|
|
0 commit comments