|
6 | 6 | <modelVersion>4.0.0</modelVersion>
|
7 | 7 | <groupId>com.google.guava</groupId>
|
8 | 8 | <artifactId>guava-parent</artifactId>
|
9 |
| - <version>HEAD-android-SNAPSHOT</version> |
| 9 | + <version>1.0-HEAD-android-SNAPSHOT</version> |
10 | 10 | <packaging>pom</packaging>
|
11 | 11 | <name>Guava Maven Parent</name>
|
12 | 12 | <description>Parent for guava artifacts</description>
|
|
42 | 42 | <module.status>integration</module.status>
|
43 | 43 | <variant.jvmEnvironment>android</variant.jvmEnvironment>
|
44 | 44 | <variant.jvmEnvironmentVariantName>android</variant.jvmEnvironmentVariantName>
|
45 |
| - <otherVariant.version>HEAD-jre-SNAPSHOT</otherVariant.version> |
| 45 | + <otherVariant.version>1.0-HEAD-jre-SNAPSHOT</otherVariant.version> |
46 | 46 | <otherVariant.jvmEnvironment>standard-jvm</otherVariant.jvmEnvironment>
|
47 | 47 | <otherVariant.jvmEnvironmentVariantName>jre</otherVariant.jvmEnvironmentVariantName>
|
| 48 | + <publishing.repository.snapshots>https://oss.sonatype.org/content/repositories/snapshots/</publishing.repository.snapshots> |
| 49 | + <publishing.repository.releases>https://oss.sonatype.org/service/local/staging/deploy/maven2/</publishing.repository.releases> |
48 | 50 | </properties>
|
49 | 51 | <issueManagement>
|
50 | 52 | <system>GitHub Issues</system>
|
|
86 | 88 | <module>guava-bom</module>
|
87 | 89 | <module>guava-testlib</module>
|
88 | 90 | <module>guava-tests</module>
|
| 91 | + <module>../futures/failureaccess</module> |
89 | 92 | </modules>
|
90 | 93 | <build>
|
91 | 94 | <!-- Handle where Guava deviates from Maven defaults -->
|
|
211 | 214 | </plugin>
|
212 | 215 | <plugin>
|
213 | 216 | <artifactId>maven-jar-plugin</artifactId>
|
214 |
| - <version>3.2.0</version> |
| 217 | + <version>3.4.0</version> |
| 218 | + <configuration> |
| 219 | + <excludes> |
| 220 | + <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. --> |
| 221 | + <exclude>/module-info.class</exclude> |
| 222 | + <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. --> |
| 223 | + <exclude>META-INF/versions/9/com/**/*.class</exclude> |
| 224 | + </excludes> |
| 225 | + <archive> |
| 226 | + <manifestEntries> |
| 227 | + <Multi-Release>true</Multi-Release> |
| 228 | + </manifestEntries> |
| 229 | + </archive> |
| 230 | + </configuration> |
215 | 231 | </plugin>
|
216 | 232 | <plugin>
|
217 | 233 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
0 commit comments