File tree Expand file tree Collapse file tree 7 files changed +48
-25
lines changed Expand file tree Collapse file tree 7 files changed +48
-25
lines changed Original file line number Diff line number Diff line change 19
19
<modelVersion >4.0.0</modelVersion >
20
20
21
21
<parent >
22
- <groupId >com.google.auto</groupId >
23
- <artifactId >auto-parent</artifactId >
24
- <version >6 </version >
22
+ <groupId >com.google.auto.value </groupId >
23
+ <artifactId >auto-value- parent</artifactId >
24
+ <version >HEAD-SNAPSHOT </version >
25
25
</parent >
26
26
27
27
<groupId >com.google.auto.value</groupId >
Original file line number Diff line number Diff line change 25
25
</parent >
26
26
27
27
<groupId >com.google.auto.value</groupId >
28
- <artifactId >auto-value-pom-aggregator </artifactId >
28
+ <artifactId >auto-value-parent </artifactId >
29
29
<version >HEAD-SNAPSHOT</version >
30
- <name >AutoValue</name >
30
+ <name >AutoValue Parent </name >
31
31
<description >
32
32
Immutable value-type code generation for Java 1.6+.
33
33
</description >
43
43
<modules >
44
44
<module >annotations</module >
45
45
<module >processor</module >
46
+ <module >src/it/functional</module >
47
+ <module >src/it/gwtserializer</module >
46
48
</modules >
47
-
48
- <build >
49
- <plugins >
50
- <plugin >
51
- <!-- Used to run the functional tests -->
52
- <groupId >org.apache.maven.plugins</groupId >
53
- <artifactId >maven-invoker-plugin</artifactId >
54
- </plugin >
55
- </plugins >
56
- </build >
57
49
</project >
Original file line number Diff line number Diff line change 19
19
<modelVersion >4.0.0</modelVersion >
20
20
21
21
<parent >
22
- <groupId >com.google.auto</groupId >
23
- <artifactId >auto-parent</artifactId >
24
- <version >6 </version >
22
+ <groupId >com.google.auto.value </groupId >
23
+ <artifactId >auto-value- parent</artifactId >
24
+ <version >HEAD-SNAPSHOT </version >
25
25
</parent >
26
26
27
27
<groupId >com.google.auto.value</groupId >
49
49
<groupId >com.google.auto.service</groupId >
50
50
<artifactId >auto-service</artifactId >
51
51
<version >1.0-rc4</version >
52
+ <scope >provided</scope >
52
53
</dependency >
53
54
<dependency >
54
55
<groupId >com.google.guava</groupId >
Original file line number Diff line number Diff line change 18
18
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
19
19
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
20
20
<modelVersion >4.0.0</modelVersion >
21
+
22
+ <parent >
23
+ <groupId >com.google.auto.value</groupId >
24
+ <artifactId >auto-value-parent</artifactId >
25
+ <version >HEAD-SNAPSHOT</version >
26
+ </parent >
27
+
21
28
<groupId >com.google.auto.value.it.functional</groupId >
22
29
<artifactId >functional</artifactId >
23
30
<version >HEAD-SNAPSHOT</version >
29
36
<dependency >
30
37
<groupId >com.google.auto.value</groupId >
31
38
<artifactId >auto-value-annotations</artifactId >
32
- <version >@ project.version@ </version >
39
+ <version >${ project.version} </version >
33
40
</dependency >
34
41
<dependency >
35
42
<groupId >com.google.auto.value</groupId >
36
43
<artifactId >auto-value</artifactId >
37
- <version >@ project.version@ </version >
44
+ <version >${ project.version} </version >
38
45
</dependency >
39
46
<dependency >
40
47
<groupId >com.google.code.findbugs</groupId >
118
125
</testExcludes >
119
126
</configuration >
120
127
</plugin >
128
+ <plugin >
129
+ <groupId >org.apache.maven.plugins</groupId >
130
+ <artifactId >maven-deploy-plugin</artifactId >
131
+ <version >2.7</version >
132
+ <configuration >
133
+ <!-- Build/test, but don't deploy -->
134
+ <skip >true</skip >
135
+ </configuration >
136
+ </plugin >
121
137
</plugins >
122
138
</build >
123
139
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Simple package-less value type for tests.
23
23
*
24
- * @see PackagelessValueTypeTest
25
24
* @author [email protected] (Éamonn McManus)
26
25
*/
27
26
@ AutoValue
Original file line number Diff line number Diff line change 21
21
/**
22
22
* Simple value type for tests.
23
23
*
24
- * @see SimpleValueTypeTest
25
24
* @author [email protected] (Éamonn McManus)
26
25
*/
27
26
@ AutoValue
@@ -53,4 +52,4 @@ public static SimpleValueType create(
53
52
// corresponding field.
54
53
return new AutoValue_SimpleValueType (string , integer , map );
55
54
}
56
- }
55
+ }
Original file line number Diff line number Diff line change 18
18
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
19
19
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
20
20
<modelVersion >4.0.0</modelVersion >
21
+
22
+ <parent >
23
+ <groupId >com.google.auto.value</groupId >
24
+ <artifactId >auto-value-parent</artifactId >
25
+ <version >HEAD-SNAPSHOT</version >
26
+ </parent >
27
+
21
28
<groupId >com.google.auto.value.it.gwtserializer</groupId >
22
29
<artifactId >gwtserializer</artifactId >
23
30
<version >HEAD-SNAPSHOT</version >
37
44
<dependency >
38
45
<groupId >com.google.auto.value</groupId >
39
46
<artifactId >auto-value-annotations</artifactId >
40
- <version >@ project.version@ </version >
47
+ <version >${ project.version} </version >
41
48
</dependency >
42
49
<dependency >
43
50
<groupId >com.google.auto.value</groupId >
44
51
<artifactId >auto-value</artifactId >
45
- <version >@ project.version@ </version >
52
+ <version >${ project.version} </version >
46
53
<optional >true</optional >
47
54
</dependency >
48
55
<dependency >
135
142
</execution >
136
143
</executions >
137
144
</plugin >
145
+ <plugin >
146
+ <groupId >org.apache.maven.plugins</groupId >
147
+ <artifactId >maven-deploy-plugin</artifactId >
148
+ <version >2.7</version >
149
+ <configuration >
150
+ <!-- Build/test, but don't deploy -->
151
+ <skip >true</skip >
152
+ </configuration >
153
+ </plugin >
138
154
</plugins >
139
155
</build >
140
156
</project >
You can’t perform that action at this time.
0 commit comments