|
1 | 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"> |
2 | | - <modelVersion>4.0.0</modelVersion> |
3 | | - <parent> |
4 | | - <groupId>com.google.mug</groupId> |
5 | | - <artifactId>mug-root</artifactId> |
6 | | - <version>9.1-SNAPSHOT</version> |
7 | | - <relativePath>../pom.xml</relativePath> |
8 | | - </parent> |
9 | | - <artifactId>mug</artifactId> |
10 | | - <packaging>jar</packaging> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <parent> |
| 4 | + <groupId>com.google.mug</groupId> |
| 5 | + <artifactId>mug-root</artifactId> |
| 6 | + <version>9.1-SNAPSHOT</version> |
| 7 | + <relativePath>../pom.xml</relativePath> |
| 8 | + </parent> |
| 9 | + <artifactId>mug</artifactId> |
| 10 | + <packaging>jar</packaging> |
11 | 11 |
|
12 | | - <name>core</name> |
13 | | - <build> |
14 | | - <pluginManagement> |
15 | | - <plugins> |
16 | | - <plugin> |
17 | | - <groupId>org.sonatype.central</groupId> |
18 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
19 | | - <version>0.8.0</version> <!-- or latest --> |
20 | | - <extensions>true</extensions> |
21 | | - <configuration> |
22 | | - <publishingServerId>central</publishingServerId> |
23 | | - <!-- optional but recommended in CI --> |
24 | | - <autoPublish>true</autoPublish> |
25 | | - <waitUntil>published</waitUntil> |
26 | | - </configuration> |
27 | | - </plugin> |
28 | | - </plugins> |
29 | | - </pluginManagement> |
30 | | - </build> |
| 12 | + <name>core</name> |
| 13 | + <build> |
| 14 | + <pluginManagement> |
| 15 | + <plugins> |
| 16 | + <plugin> |
| 17 | + <groupId>org.sonatype.central</groupId> |
| 18 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 19 | + <version>0.8.0</version> <!-- or latest --> |
| 20 | + <extensions>true</extensions> |
| 21 | + <configuration> |
| 22 | + <publishingServerId>central</publishingServerId> |
| 23 | + <!-- optional but recommended in CI --> |
| 24 | + <autoPublish>true</autoPublish> |
| 25 | + <waitUntil>published</waitUntil> |
| 26 | + </configuration> |
| 27 | + </plugin> |
| 28 | + </plugins> |
| 29 | + </pluginManagement> |
31 | 30 |
|
32 | | - <dependencies> |
33 | | - <dependency> |
34 | | - <groupId>junit</groupId> |
35 | | - <artifactId>junit</artifactId> |
36 | | - </dependency> |
| 31 | + <plugins> |
| 32 | + <plugin> |
| 33 | + <groupId>org.apache.maven.plugins</groupId> |
| 34 | + <artifactId>maven-jar-plugin</artifactId> |
| 35 | + <configuration> |
| 36 | + <archive> |
| 37 | + <manifestEntries> |
| 38 | + <Automatic-Module-Name>com.google.mu</Automatic-Module-Name> |
| 39 | + </manifestEntries> |
| 40 | + </archive> |
| 41 | + </configuration> |
| 42 | + </plugin> |
| 43 | + </plugins> |
| 44 | + </build> |
37 | 45 |
|
38 | | - <dependency> |
39 | | - <groupId>org.junit.jupiter</groupId> |
40 | | - <artifactId>junit-jupiter-api</artifactId> |
41 | | - </dependency> |
| 46 | + <dependencies> |
| 47 | + <dependency> |
| 48 | + <groupId>junit</groupId> |
| 49 | + <artifactId>junit</artifactId> |
| 50 | + </dependency> |
42 | 51 |
|
43 | | - <dependency> |
44 | | - <groupId>com.google.truth</groupId> |
45 | | - <artifactId>truth</artifactId> |
46 | | - </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.junit.jupiter</groupId> |
| 54 | + <artifactId>junit-jupiter-api</artifactId> |
| 55 | + </dependency> |
47 | 56 |
|
48 | | - <dependency> |
49 | | - <groupId>com.google.truth.extensions</groupId> |
50 | | - <artifactId>truth-java8-extension</artifactId> |
51 | | - </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.google.truth</groupId> |
| 59 | + <artifactId>truth</artifactId> |
| 60 | + </dependency> |
52 | 61 |
|
53 | | - <dependency> |
54 | | - <groupId>com.google.testparameterinjector</groupId> |
55 | | - <artifactId>test-parameter-injector</artifactId> |
56 | | - </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>com.google.truth.extensions</groupId> |
| 64 | + <artifactId>truth-java8-extension</artifactId> |
| 65 | + </dependency> |
57 | 66 |
|
58 | | - <dependency> |
59 | | - <groupId>com.google.guava</groupId> |
60 | | - <artifactId>guava-testlib</artifactId> |
61 | | - </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>com.google.testparameterinjector</groupId> |
| 69 | + <artifactId>test-parameter-injector</artifactId> |
| 70 | + </dependency> |
62 | 71 |
|
63 | | - <dependency> |
64 | | - <groupId>com.google.guava</groupId> |
65 | | - <artifactId>guava</artifactId> |
66 | | - </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>com.google.guava</groupId> |
| 74 | + <artifactId>guava-testlib</artifactId> |
| 75 | + </dependency> |
67 | 76 |
|
68 | | - <dependency> |
69 | | - <groupId>org.mockito</groupId> |
70 | | - <artifactId>mockito-core</artifactId> |
71 | | - <scope>test</scope> |
72 | | - </dependency> |
73 | | - </dependencies> |
| 77 | + <dependency> |
| 78 | + <groupId>com.google.guava</groupId> |
| 79 | + <artifactId>guava</artifactId> |
| 80 | + </dependency> |
74 | 81 |
|
| 82 | + <dependency> |
| 83 | + <groupId>org.mockito</groupId> |
| 84 | + <artifactId>mockito-core</artifactId> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
| 87 | + </dependencies> |
75 | 88 | </project> |
0 commit comments