|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| - |
3 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 |
| - |
6 |
| - <modelVersion>4.0.0</modelVersion> |
7 |
| - <parent> |
8 |
| - <groupId>com.google.code.gson</groupId> |
9 |
| - <artifactId>gson-parent</artifactId> |
10 |
| - <version>2.9.0-SNAPSHOT</version> |
11 |
| - </parent> |
12 |
| - |
13 |
| - <artifactId>proto</artifactId> |
14 |
| - <name>Gson Protobuf Support</name> |
15 |
| - <description>Gson support for Protobufs</description> |
16 |
| - |
17 |
| - <licenses> |
18 |
| - <license> |
19 |
| - <name>Apache-2.0</name> |
20 |
| - <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
21 |
| - </license> |
22 |
| - </licenses> |
23 |
| - |
24 |
| - <dependencies> |
25 |
| - <dependency> |
26 |
| - <groupId>com.google.code.gson</groupId> |
27 |
| - <artifactId>gson</artifactId> |
28 |
| - <version>${project.parent.version}</version> |
29 |
| - </dependency> |
30 |
| - |
31 |
| - <dependency> |
32 |
| - <groupId>com.google.protobuf</groupId> |
33 |
| - <artifactId>protobuf-java</artifactId> |
34 |
| - <version>4.0.0-rc-2</version> |
35 |
| - </dependency> |
36 |
| - |
37 |
| - <dependency> |
38 |
| - <groupId>com.google.guava</groupId> |
39 |
| - <artifactId>guava</artifactId> |
40 |
| - <version>31.0.1-jre</version> |
41 |
| - </dependency> |
42 |
| - |
43 |
| - <dependency> |
44 |
| - <groupId>junit</groupId> |
45 |
| - <artifactId>junit</artifactId> |
46 |
| - <scope>test</scope> |
47 |
| - </dependency> |
48 |
| - |
49 |
| - <dependency> |
50 |
| - <groupId>com.google.truth</groupId> |
51 |
| - <artifactId>truth</artifactId> |
52 |
| - <version>1.1.3</version> |
53 |
| - <scope>test</scope> |
54 |
| - </dependency> |
55 |
| - </dependencies> |
56 |
| - |
57 |
| - <build> |
58 |
| - <finalName>gson-proto</finalName> |
59 |
| - <!-- Setup based on https://quarkus.io/guides/grpc-getting-started#generating-java-files-from-proto-with-protobuf-maven-plugin --> |
60 |
| - <extensions> |
61 |
| - <extension> |
62 |
| - <groupId>kr.motd.maven</groupId> |
63 |
| - <artifactId>os-maven-plugin</artifactId> |
64 |
| - <version>1.7.0</version> |
65 |
| - </extension> |
66 |
| - </extensions> |
67 |
| - |
68 |
| - <plugins> |
69 |
| - <plugin> |
70 |
| - <groupId>org.xolstice.maven.plugins</groupId> |
71 |
| - <artifactId>protobuf-maven-plugin</artifactId> |
72 |
| - <version>0.6.1</version> |
73 |
| - <configuration> |
74 |
| - <protocArtifact>com.google.protobuf:protoc:3.17.3:exe:${os.detected.classifier}</protocArtifact> |
75 |
| - </configuration> |
76 |
| - <executions> |
77 |
| - <execution> |
78 |
| - <goals> |
79 |
| - <goal>compile</goal> |
80 |
| - <goal>test-compile</goal> |
81 |
| - </goals> |
82 |
| - </execution> |
83 |
| - </executions> |
84 |
| - </plugin> |
85 |
| - </plugins> |
86 |
| - |
87 |
| - <pluginManagement> |
88 |
| - <plugins> |
89 |
| - <plugin> |
90 |
| - <groupId>org.apache.maven.plugins</groupId> |
91 |
| - <artifactId>maven-deploy-plugin</artifactId> |
92 |
| - <version>3.0.0-M2</version> |
93 |
| - <configuration> |
94 |
| - <!-- Not deployed --> |
95 |
| - <skip>true</skip> |
96 |
| - </configuration> |
97 |
| - </plugin> |
98 |
| - </plugins> |
99 |
| - </pluginManagement> |
100 |
| - </build> |
101 |
| - |
102 |
| - <developers> |
103 |
| - <developer> |
104 |
| - <name>Inderjeet Singh</name> |
105 |
| - <organization>Google Inc.</organization> |
106 |
| - </developer> |
107 |
| - </developers> |
108 |
| -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<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/xsd/maven-4.0.0.xsd"> |
| 4 | + |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <parent> |
| 7 | + <groupId>com.google.code.gson</groupId> |
| 8 | + <artifactId>gson-parent</artifactId> |
| 9 | + <version>2.9.0</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>proto</artifactId> |
| 13 | + <name>Gson Protobuf Support</name> |
| 14 | + <description>Gson support for Protobufs</description> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Apache-2.0</name> |
| 19 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>com.google.code.gson</groupId> |
| 26 | + <artifactId>gson</artifactId> |
| 27 | + <version>${project.parent.version}</version> |
| 28 | + </dependency> |
| 29 | + |
| 30 | + <dependency> |
| 31 | + <groupId>com.google.protobuf</groupId> |
| 32 | + <artifactId>protobuf-java</artifactId> |
| 33 | + <version>4.0.0-rc-2</version> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + <dependency> |
| 37 | + <groupId>com.google.guava</groupId> |
| 38 | + <artifactId>guava</artifactId> |
| 39 | + <version>31.0.1-jre</version> |
| 40 | + </dependency> |
| 41 | + |
| 42 | + <dependency> |
| 43 | + <groupId>junit</groupId> |
| 44 | + <artifactId>junit</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>com.google.truth</groupId> |
| 50 | + <artifactId>truth</artifactId> |
| 51 | + <version>1.1.3</version> |
| 52 | + <scope>test</scope> |
| 53 | + </dependency> |
| 54 | + </dependencies> |
| 55 | + |
| 56 | + <build> |
| 57 | + <finalName>gson-proto</finalName> |
| 58 | + <!-- Setup based on https://quarkus.io/guides/grpc-getting-started#generating-java-files-from-proto-with-protobuf-maven-plugin --> |
| 59 | + <extensions> |
| 60 | + <extension> |
| 61 | + <groupId>kr.motd.maven</groupId> |
| 62 | + <artifactId>os-maven-plugin</artifactId> |
| 63 | + <version>1.7.0</version> |
| 64 | + </extension> |
| 65 | + </extensions> |
| 66 | + |
| 67 | + <plugins> |
| 68 | + <plugin> |
| 69 | + <groupId>org.xolstice.maven.plugins</groupId> |
| 70 | + <artifactId>protobuf-maven-plugin</artifactId> |
| 71 | + <version>0.6.1</version> |
| 72 | + <configuration> |
| 73 | + <protocArtifact>com.google.protobuf:protoc:3.17.3:exe:${os.detected.classifier}</protocArtifact> |
| 74 | + </configuration> |
| 75 | + <executions> |
| 76 | + <execution> |
| 77 | + <goals> |
| 78 | + <goal>compile</goal> |
| 79 | + <goal>test-compile</goal> |
| 80 | + </goals> |
| 81 | + </execution> |
| 82 | + </executions> |
| 83 | + </plugin> |
| 84 | + </plugins> |
| 85 | + |
| 86 | + <pluginManagement> |
| 87 | + <plugins> |
| 88 | + <plugin> |
| 89 | + <groupId>org.apache.maven.plugins</groupId> |
| 90 | + <artifactId>maven-deploy-plugin</artifactId> |
| 91 | + <version>3.0.0-M2</version> |
| 92 | + <configuration> |
| 93 | + <!-- Not deployed --> |
| 94 | + <skip>true</skip> |
| 95 | + </configuration> |
| 96 | + </plugin> |
| 97 | + </plugins> |
| 98 | + </pluginManagement> |
| 99 | + </build> |
| 100 | + |
| 101 | + <developers> |
| 102 | + <developer> |
| 103 | + <name>Inderjeet Singh</name> |
| 104 | + <organization>Google Inc.</organization> |
| 105 | + </developer> |
| 106 | + </developers> |
| 107 | +</project> |
0 commit comments