Author: fanningpj
Date: Tue Jun 25 13:13:31 2024
New Revision: 1918595
URL: http://svn.apache.org/viewvc?rev=1918595&view=rev
Log:
[XMLBEANS-651] remove dependency on xml-apis
Modified:
xmlbeans/trunk/build.gradle
xmlbeans/trunk/build.xml
xmlbeans/trunk/release-guide.txt
xmlbeans/trunk/src/main/maven/org.apache.xmlbeans/xmlbeans/pom.xml
Modified: xmlbeans/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/xmlbeans/trunk/build.gradle?rev=1918595&r1=1918594&r2=1918595&view=diff
==============================================================================
--- xmlbeans/trunk/build.gradle (original)
+++ xmlbeans/trunk/build.gradle Tue Jun 25 13:13:31 2024
@@ -148,9 +148,9 @@ dependencies {
testRuntimeOnly 'org.xmlresolver:xmlresolver:4.6.4'
// maven plugin dependencies
- implementation('org.apache.maven:maven-core:3.9.6')
- implementation 'org.apache.maven:maven-model:3.9.6'
- implementation('org.apache.maven:maven-plugin-api:3.9.6')
+ implementation('org.apache.maven:maven-core:3.9.8')
+ implementation 'org.apache.maven:maven-model:3.9.8'
+ implementation('org.apache.maven:maven-plugin-api:3.9.8')
implementation
'org.apache.maven.plugin-tools:maven-plugin-annotations:3.13.0'
Modified: xmlbeans/trunk/build.xml
URL:
http://svn.apache.org/viewvc/xmlbeans/trunk/build.xml?rev=1918595&r1=1918594&r2=1918595&view=diff
==============================================================================
--- xmlbeans/trunk/build.xml (original)
+++ xmlbeans/trunk/build.xml Tue Jun 25 13:13:31 2024
@@ -148,9 +148,9 @@
<dependency prefix="xerces" artifact="xerces:xercesImpl:2.12.2"
usage="tests"/>
<!-- maven plugin dependencies -->
- <dependency prefix="maven-core"
artifact="org.apache.maven:maven-core:3.9.6" usage="maven-plugin"/>
- <dependency prefix="maven-model"
artifact="org.apache.maven:maven-model:3.9.6" usage="maven-plugin"/>
- <dependency prefix="maven-plugin-api"
artifact="org.apache.maven:maven-plugin-api:3.9.6" usage="maven-plugin"/>
+ <dependency prefix="maven-core"
artifact="org.apache.maven:maven-core:3.9.8" usage="maven-plugin"/>
+ <dependency prefix="maven-model"
artifact="org.apache.maven:maven-model:3.9.8" usage="maven-plugin"/>
+ <dependency prefix="maven-plugin-api"
artifact="org.apache.maven:maven-plugin-api:3.9.8" usage="maven-plugin"/>
<dependency prefix="maven-plugin-annotations"
artifact="org.apache.maven.plugin-tools:maven-plugin-annotations:3.13.0"
usage="maven-plugin"/>
<!-- only necessary to compile against JDK8 internals - for Java9+ there's
a mulitmodule implementation -->
<dependency prefix="xml-resolver"
artifact="com.sun.org.apache.xml.internal:resolver:20050927"
usage="maven-plugin"/>
Modified: xmlbeans/trunk/release-guide.txt
URL:
http://svn.apache.org/viewvc/xmlbeans/trunk/release-guide.txt?rev=1918595&r1=1918594&r2=1918595&view=diff
==============================================================================
--- xmlbeans/trunk/release-guide.txt (original)
+++ xmlbeans/trunk/release-guide.txt Tue Jun 25 13:13:31 2024
@@ -100,8 +100,10 @@ svn pd 'svn:executable' $(find -name .sv
- apache-xmlbeans-src-VERSION-DATE.zip
- apache-xmlbeans-src-VERSION-DATE.tgz
- 2. Grab the current deployed POM, and edit the version # and anything else
that has changed:
+ 2. Grab the current deployed POM, and edit the version # and anything else
that has changed (eg dependencies):
https://repository.apache.org/service/local/repo_groups/public/content/org/apache/xmlbeans/xmlbeans/VERSION/xmlbeans-VERSION.pom
+ - you should also check
src/main/maven/org.apache.xmlbeans/xmlbeans/pom.xml
+ - there might be changes in that pom.xml that should be reflected in the
new POM
3. Sign the jars, zip, tgz, and pom with your key (gpg doesn't sign via
--multifile yet):
for f in *.jar *.zip *.tgz *.pom; do gpg --default-key 1556F3A4 -ab $f;
done
Modified: xmlbeans/trunk/src/main/maven/org.apache.xmlbeans/xmlbeans/pom.xml
URL:
http://svn.apache.org/viewvc/xmlbeans/trunk/src/main/maven/org.apache.xmlbeans/xmlbeans/pom.xml?rev=1918595&r1=1918594&r2=1918595&view=diff
==============================================================================
--- xmlbeans/trunk/src/main/maven/org.apache.xmlbeans/xmlbeans/pom.xml
(original)
+++ xmlbeans/trunk/src/main/maven/org.apache.xmlbeans/xmlbeans/pom.xml Tue Jun
25 13:13:31 2024
@@ -105,13 +105,13 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
- <version>3.9.6</version>
+ <version>3.9.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
- <version>3.9.6</version>
+ <version>3.9.8</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -121,20 +121,4 @@
<scope>provided</scope>
</dependency>
</dependencies>
-
- <profiles>
- <profile>
- <id>java8</id>
- <activation>
- <jdk>1.8</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- <version>1.4.01</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]