Skip to content

Commit

Permalink
Release 3-15.0-01
Browse files Browse the repository at this point in the history
  • Loading branch information
j-s-3 committed Jan 14, 2019
1 parent 13a2f9c commit c2f0829
Show file tree
Hide file tree
Showing 185 changed files with 473 additions and 331 deletions.
7 changes: 6 additions & 1 deletion assemblies/nexus-base-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.sonatype.nexus.assemblies</groupId>
<artifactId>nexus-assemblies</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-base-feature</artifactId>
Expand Down Expand Up @@ -73,6 +73,11 @@
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-rapture</artifactId>
</dependency>

<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-quartz</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
5 changes: 5 additions & 0 deletions assemblies/nexus-base-feature/src/main/feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
<bundle>wrap:${mvn:swagger-core}$overwrite=merge&amp;Import-Package=com.google.common.*,*</bundle>
<bundle>wrap:${mvn:swagger-jaxrs}$overwrite=merge&amp;Import-Package=com.google.common.*,org.reflections.*;resolution:=optional,*</bundle>

<!--
Widen Quartz optional imports to include c3p0/hikari - use '*' to avoid repeating long list of existing optional imports
-->
<bundle>wrap:${mvn:quartz}$overwrite=merge&amp;Import-Package=*;resolution:=optional</bundle>

<!--
Give our extender bundle its own start level (distinct from the boot start-level)
-->
Expand Down
2 changes: 1 addition & 1 deletion assemblies/nexus-base-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.sonatype.nexus.assemblies</groupId>
<artifactId>nexus-assemblies</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-base-template</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,33 @@
<Arg>
<New class="org.eclipse.jetty.security.ConstraintMapping">
<Set name="pathSpec">/*</Set>
<Set name="method">TRACE</Set>
<Set name="constraint">
<New class="org.eclipse.jetty.util.security.Constraint">
<Set name="name">Deny TRACE</Set>
<Set name="authenticate">true</Set>
<Set name="roles">
<Array type="String"/>
</Set>
</New>
</Set>
</New>
</Arg>
</Call>
<Call name="addConstraintMapping">
<Arg>
<New class="org.eclipse.jetty.security.ConstraintMapping">
<Set name="pathSpec">/*</Set>
<Set name="methodOmissions">
<Array type="String">
<Item>TRACE</Item>
</Array>
</Set>
<Set name="constraint">
<New class="org.eclipse.jetty.util.security.Constraint">
<!-- 2 means CONFIDENTIAL. 1 means INTEGRITY -->
<Set name="dataConstraint">2</Set>
<Set name="name">Redirect Everything Except TRACE to HTTPS</Set>
</New>
</Set>
</New>
Expand Down
2 changes: 1 addition & 1 deletion assemblies/nexus-boot-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.sonatype.nexus.assemblies</groupId>
<artifactId>nexus-assemblies</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-boot-feature</artifactId>
Expand Down
11 changes: 6 additions & 5 deletions assemblies/nexus-core-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.sonatype.nexus.assemblies</groupId>
<artifactId>nexus-assemblies</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-core-feature</artifactId>
Expand Down Expand Up @@ -54,16 +54,17 @@
<scope>provided</scope>
</dependency>

<!-- bundles and sub-features belonging to nexus-core-feature -->

<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-core</artifactId>
<artifactId>nexus-quartz</artifactId>
<scope>provided</scope>
</dependency>

<!-- bundles and sub-features belonging to nexus-core-feature -->

<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-quartz</artifactId>
<artifactId>nexus-core</artifactId>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion assemblies/nexus-startup-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.sonatype.nexus.assemblies</groupId>
<artifactId>nexus-assemblies</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-startup-feature</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions assemblies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-parent</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<groupId>org.sonatype.nexus.assemblies</groupId>
Expand All @@ -45,15 +45,15 @@
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-components</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-plugins</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

Expand Down
38 changes: 19 additions & 19 deletions buildsupport/all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-all</artifactId>
Expand All @@ -35,143 +35,143 @@
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-commons</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-db</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-goodies</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-groovy</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-guice</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-httpclient</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-internal</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-jetty</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-jruby</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-logging</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-maven</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-metrics</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-osgi</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-other</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-rest</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-security</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-testing</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-ui</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion buildsupport/commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-commons</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion buildsupport/db/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-db</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions buildsupport/extjs-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>extjs-maven-plugin</artifactId>
Expand All @@ -37,7 +37,7 @@
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport-all</artifactId>
<type>pom</type>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
<scope>import</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion buildsupport/goodies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-goodies</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion buildsupport/groovy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-groovy</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion buildsupport/guice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-guice</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion buildsupport/httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.sonatype.nexus.buildsupport</groupId>
<artifactId>nexus-buildsupport</artifactId>
<version>3.15.0-SNAPSHOT</version>
<version>3.15.0-01</version>
</parent>

<artifactId>nexus-buildsupport-httpclient</artifactId>
Expand Down
Loading

0 comments on commit c2f0829

Please sign in to comment.