upgrade to nexus-3.22.0-02
This commit is contained in:
parent
0155038ad7
commit
457cb7f752
|
|
@ -116,7 +116,7 @@ Nexus uses [OrientDB](https://en.wikipedia.org/wiki/OrientDB) as its database. T
|
|||
sudo su -l # switch to the root user.
|
||||
systemctl stop nexus # make sure nexus is not running while you use the database.
|
||||
su -s /bin/bash nexus # switch to the nexus user.
|
||||
nexus_home=/opt/nexus/nexus-3.20.1-01 # make sure you have the correct version here.
|
||||
nexus_home=/opt/nexus/nexus-3.22.0-02 # make sure you have the correct version here.
|
||||
nexus_data=$nexus_home/../sonatype-work/nexus3
|
||||
function orientdb-console {
|
||||
java -jar $nexus_home/lib/support/nexus-orient-console.jar $*
|
||||
|
|
|
|||
|
|
@ -33,17 +33,17 @@ pushd /opt/nexus
|
|||
# see https://www.sonatype.com/download-oss-sonatype
|
||||
# see https://help.sonatype.com/repomanager3/download/download-archives---repository-manager-3
|
||||
# see https://help.sonatype.com/display/NXRM3
|
||||
nexus_version=3.20.1-01
|
||||
nexus_version=3.22.0-02
|
||||
nexus_home=/opt/nexus/nexus-$nexus_version
|
||||
nexus_tarball=nexus-$nexus_version-unix.tar.gz
|
||||
nexus_download_url=https://sonatype-download.global.ssl.fastly.net/nexus/3/$nexus_tarball
|
||||
nexus_download_sha1=5cabc748671dc510e4374548ac8c9b0f4b2517c1
|
||||
nexus_download_sha1=cccf70509def19c1b0db644a62cc57922f9f86b7
|
||||
wget -q $nexus_download_url
|
||||
if [ "$(sha1sum $nexus_tarball | awk '{print $1}')" != "$nexus_download_sha1" ]; then
|
||||
echo "downloaded $nexus_download_url failed the checksum verification"
|
||||
exit 1
|
||||
fi
|
||||
tar xf $nexus_tarball # NB this creates the $nexus_home (e.g. nexus-3.20.1-01) and sonatype-work directories.
|
||||
tar xf $nexus_tarball # NB this creates the $nexus_home (e.g. nexus-3.22.0-02) and sonatype-work directories.
|
||||
rm $nexus_tarball
|
||||
install -d -o nexus -g nexus -m 700 .java # java preferences are saved here (the default java.util.prefs.userRoot preference).
|
||||
install -d -o nexus -g nexus -m 700 sonatype-work/nexus3/etc
|
||||
|
|
@ -52,11 +52,17 @@ grep -v -E '\s*##.*' $nexus_home/etc/nexus-default.properties >sonatype-work/nex
|
|||
sed -i -E 's,(application-host=).+,\1127.0.0.1,g' sonatype-work/nexus3/etc/nexus.properties
|
||||
sed -i -E 's,nexus-pro-,nexus-oss-,g' sonatype-work/nexus3/etc/nexus.properties
|
||||
cat >>sonatype-work/nexus3/etc/nexus.properties <<'EOF'
|
||||
|
||||
# disable the wizard.
|
||||
nexus.onboarding.enabled=false
|
||||
|
||||
# disable generating a random password for the admin user.
|
||||
nexus.security.randompassword=false
|
||||
|
||||
# allow the use of groovy scripts because we use them to configure nexus.
|
||||
# see https://issues.sonatype.org/browse/NEXUS-23205
|
||||
# see Scripting Nexus Repository Manager 3 at https://support.sonatype.com/hc/en-us/articles/360045220393
|
||||
nexus.scripts.allowCreation=true
|
||||
EOF
|
||||
diff -u $nexus_home/etc/nexus-default.properties sonatype-work/nexus3/etc/nexus.properties || true
|
||||
popd
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ binaries: binaries-download
|
|||
|
||||
binaries-download:
|
||||
mkdir -p binaries
|
||||
wget -qO- https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/3/nexus-3.20.1-01-unix.tar.gz \
|
||||
wget -qO- https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/3/nexus-3.22.0-02-unix.tar.gz \
|
||||
| tar xzf - --strip-components 1 -C binaries
|
||||
|
||||
clean:
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<version>1.0-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<nx-version>3.20.1-01</nx-version>
|
||||
<nx-version>3.22.0-02</nx-version>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
|
|||
|
|
@ -8,24 +8,23 @@
|
|||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-core:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-bootstrap:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-core:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-bootstrap:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.25" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.25" level="project" />
|
||||
<orderEntry type="library" name="Maven: uk.org.lidalia:sysout-over-slf4j:1.0.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.codehaus.plexus:plexus-interpolation:1.24" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-supportzip-api:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-email:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-supportzip-api:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-email:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-email:1.5" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-cleanup:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-ssl:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-ssl:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.geronimo.framework:geronimo-crypto:2.2.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-webhooks:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-script:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-common:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-webhooks:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-script:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-common:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.google.code.findbugs:jsr305:3.0.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.google.guava:guava:25.0-jre" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.eclipse.sisu:org.eclipse.sisu.inject:0.3.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.eclipse.sisu:org.eclipse.sisu.inject:0.3.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.servicemix.bundles:org.apache.servicemix.bundles.javax-inject:1_2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.servicemix.bundles:org.apache.servicemix.bundles.aopalliance:1.0_6" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.google.inject:guice:4.1.0" level="project" />
|
||||
|
|
@ -39,51 +38,62 @@
|
|||
<orderEntry type="library" name="Maven: org.sonatype.gossip:gossip-support:1.8" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.gossip:gossip-bootstrap:1.8" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.goodies:goodies-lifecycle:2.3.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: joda-time:joda-time:2.9.5" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.codehaus.groovy:groovy-all:2.4.15" level="project" />
|
||||
<orderEntry type="library" name="Maven: joda-time:joda-time:2.10.5" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.codehaus.groovy:groovy-all:2.4.17" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-cli:commons-cli:1.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.9.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-joda:2.9.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-lang:commons-lang:2.6" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-task-logging:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-validation:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: javax.validation:validation-api:1.1.0.Final" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.hibernate:hibernate-validator:5.1.3.Final" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.0.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-task-logging:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-validation:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: jakarta.validation:jakarta.validation-api:2.0.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.1.0.Final" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml:classmate:1.3.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-validator:commons-validator:1.6" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-digester:commons-digester:1.8.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.glassfish.web:javax.el:2.2.6" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.glassfish:jakarta.el:3.0.3" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.thoughtworks.paranamer:paranamer:2.8" level="project" />
|
||||
<orderEntry type="library" name="Maven: javax.ws.rs:javax.ws.rs-api:2.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-security:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-audit:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-formfields:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-security:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-audit:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-formfields:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.goodies:goodies-i18n:2.3.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-jmx:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-cache:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-jmx:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-cache:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: javax.cache:cache-api:1.1.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.ehcache:ehcache:3.2.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-crypto:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-crypto:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcprov-jdk15on:1.60" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpg-jdk15on:1.60" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.bouncycastle:bcpkix-jdk15on:1.60" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-rest:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-rest:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.21" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-core:1.3.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-web:1.3.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-guice:1.3.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-core:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-lang:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-cache:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-crypto-hash:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-crypto-core:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-crypto-cipher:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-config-core:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-config-ogdl:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-event:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-web:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.shiro:shiro-guice:1.4.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.25" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils:1.9.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils:1.9.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.google.inject.extensions:guice-servlet:4.1.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.google.inject.extensions:guice-multibindings:4.1.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-repository:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-capability:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-mime:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-repository:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-repository-config:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-repository-services:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-repository-view:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-capability:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-mime:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.tika:tika-core:1.22" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.9.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.9.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-orient:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-orient:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.orientechnologies:orientdb-core:2.2.36" level="project" />
|
||||
<orderEntry type="library" name="Maven: net.java.dev.jna:jna:4.5.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: net.java.dev.jna:jna-platform:4.5.0" level="project" />
|
||||
|
|
@ -95,21 +105,21 @@
|
|||
<orderEntry type="library" name="Maven: javax.xml.stream:stax-api:1.0-2" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.orientechnologies:orientdb-tools:2.2.36" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.orientechnologies:orientdb-jdbc:2.2.36" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-blobstore:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-thread:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-blobstore:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-thread:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: io.dropwizard.metrics:metrics-core:4.1.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-blobstore-api:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-blobstore-file:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-blobstore-api:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-blobstore-file:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.squareup:tape:1.2.3" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-datastore:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-datastore-api:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-httpclient:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-datastore:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-datastore-api:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-httpclient:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.5.5" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-codec:commons-codec:1.10" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.9" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-elasticsearch:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.bundles:org.sonatype.nexus.bundles.elasticsearch:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-elasticsearch:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.bundles:org.sonatype.nexus.bundles.elasticsearch:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.9.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.9.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.2" level="project" />
|
||||
|
|
@ -118,11 +128,11 @@
|
|||
<orderEntry type="library" name="Maven: com.vividsolutions:jts:1.13" level="project" />
|
||||
<orderEntry type="library" name="Maven: com.ning:compress-lzf:1.0.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: io.netty:netty:3.10.6.Final" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-transaction:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-scheduling:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-selector:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-transaction:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-scheduling:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-selector:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.commons:commons-jexl3:3.1" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-commands:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-commands:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.osgi:org.osgi.core:6.0.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.karaf.shell:org.apache.karaf.shell.core:4.2.6" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.jline:jline:3.11.0" level="project" />
|
||||
|
|
@ -145,7 +155,7 @@
|
|||
<orderEntry type="library" name="Maven: commons-fileupload:commons-fileupload:1.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: commons-io:commons-io:2.2" level="project" />
|
||||
<orderEntry type="library" name="Maven: io.dropwizard.metrics:metrics-healthchecks:4.1.0" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.plugins:nexus-repository-maven:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.plugins:nexus-repository-maven:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.maven:maven-model:3.3.3" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.codehaus.plexus:plexus-utils:3.0.20" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.maven:maven-repository-metadata:3.3.3" level="project" />
|
||||
|
|
@ -154,12 +164,13 @@
|
|||
<orderEntry type="library" name="Maven: org.eclipse.aether:aether-spi:1.0.2.v20150114" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.maven.indexer:indexer-reader:5.1.2-816025a" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.apache.maven.archetype:archetype-catalog:2.4" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.plugins:nexus-repository-raw:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.plugins:nexus-script-plugin:3.20.1-01" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus:nexus-cleanup:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.plugins:nexus-repository-raw:3.22.0-02" level="project" />
|
||||
<orderEntry type="library" name="Maven: org.sonatype.nexus.plugins:nexus-script-plugin:3.22.0-02" level="project" />
|
||||
<orderEntry type="module-library">
|
||||
<library name="Maven: org.sonatype.nexus.plugins:nexus-ldap-plugin:3.20.1-01">
|
||||
<library name="Maven: org.sonatype.nexus.plugins:nexus-ldap-plugin:3.22.0-02">
|
||||
<CLASSES>
|
||||
<root url="jar://$MODULE_DIR$/binaries/system/com/sonatype/nexus/plugins/nexus-ldap-plugin/3.20.1-01/nexus-ldap-plugin-3.20.1-01.jar!/" />
|
||||
<root url="jar://$MODULE_DIR$/binaries/system/com/sonatype/nexus/plugins/nexus-ldap-plugin/3.22.0-02/nexus-ldap-plugin-3.22.0-02.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
|
|
|||
Loading…
Reference in New Issue