Skip to content
This repository was archived by the owner on Sep 18, 2020. It is now read-only.

Commit f9d0af0

Browse files
authored
Update to 3.15.2 (#49)
YOLO!
1 parent f21da17 commit f9d0af0

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ The table below outlines what version of Nexus Repository the plugin was built a
6464
| v1.0.0 | <3.8.0-02 |
6565
| v1.0.1 | >=3.8.0-02 |
6666
| v1.0.2 | >=3.14.0-04 |
67+
| v1.0.3 | >=3.15.2-01 |
6768

6869
If a new version of Nexus Repository is released and the plugin needs changes, a new release will be made, and this
6970
table will be updated to indicate which version of Nexus Repository it will function against. This is done on a time
@@ -92,7 +93,7 @@ and enter the bundle command after it has started:
9293
# sudo su - nexus
9394
$ cd <nexus_dir>/bin
9495
$ ./nexus run
95-
> bundle:install file:///tmp/nexus-repository-r-1.0.2.jar
96+
> bundle:install file:///tmp/nexus-repository-r-1.0.3.jar
9697
```
9798
This will return text similar to "Bundle ID: 282". You can double check this ID using bundle:list
9899
(for org.sonatype.nexus.plugins:nexus-repository-r; it should be the last one). Then start it using this
@@ -105,7 +106,7 @@ and enter the bundle command after it has started:
105106

106107
For more permanent installs of the nexus-repository-r plugin, follow these instructions:
107108

108-
* Copy the bundle (nexus-repository-r-1.0.2.jar) into <nexus_dir>/deploy
109+
* Copy the bundle (nexus-repository-r-1.0.3.jar) into <nexus_dir>/deploy
109110

110111
This will cause the plugin to be loaded with each restart of Nexus Repository. As well, this folder is monitored
111112
by Nexus Repository and the plugin should load within 60 seconds of being copied there if Nexus Repository
@@ -115,20 +116,20 @@ is running. You will still need to start the bundle using the karaf commands men
115116

116117
If you are trying to use the R plugin permanently, it likely makes more sense to do the following:
117118

118-
* Copy the bundle into `<nexus_dir>/system/org/sonatype/nexus/plugins/nexus-repository-r/1.0.2/nexus-repository-r-1.0.2.jar`
119+
* Copy the bundle into `<nexus_dir>/system/org/sonatype/nexus/plugins/nexus-repository-r/1.0.3/nexus-repository-r-1.0.3.jar`
119120
* If you are using OSS edition, make these mods in: `<nexus_dir>/system/com/sonatype/nexus/assemblies/nexus-oss-feature/3.x.y/nexus-oss-feature-3.x.y-features.xml`
120121
* If you are using PRO edition, make these mods in: `<nexus_dir>/system/com/sonatype/nexus/assemblies/nexus-pro-feature/3.x.y/nexus-pro-feature-3.x.y-features.xml`
121122
```
122123
<feature version="3.x.y.xy" prerequisite="false" dependency="false">nexus-repository-rubygems</feature>
123-
+ <feature version="1.0.2" prerequisite="false" dependency="false">nexus-repository-r</feature>
124+
+ <feature version="1.0.3" prerequisite="false" dependency="false">nexus-repository-r</feature>
124125
<feature version="3.x.y.xy" prerequisite="false" dependency="false">nexus-repository-yum</feature>
125126
</feature>
126127
```
127128
And
128129
```
129-
+ <feature name="nexus-repository-r" description="org.sonatype.nexus.plugins:nexus-repository-r" version="1.0.2">
130+
+ <feature name="nexus-repository-r" description="org.sonatype.nexus.plugins:nexus-repository-r" version="1.0.3">
130131
+ <details>org.sonatype.nexus.plugins:nexus-repository-r</details>
131-
+ <bundle>mvn:org.sonatype.nexus.plugins/nexus-repository-r/1.0.2</bundle>
132+
+ <bundle>mvn:org.sonatype.nexus.plugins/nexus-repository-r/1.0.3</bundle>
132133
+ </feature>
133134
</features>
134135
```

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
<parent>
2020
<groupId>org.sonatype.nexus.plugins</groupId>
2121
<artifactId>nexus-plugins</artifactId>
22-
<version>3.14.0-04</version>
22+
<version>3.15.2-01</version>
2323
</parent>
2424
<groupId>org.sonatype.nexus.plugins</groupId>
2525
<artifactId>nexus-repository-r</artifactId>
2626
<name>${project.groupId}:${project.artifactId}</name>
27-
<version>1.0.2</version>
27+
<version>1.0.3</version>
2828
<inceptionYear>2017</inceptionYear>
2929
<packaging>bundle</packaging>
3030

0 commit comments

Comments
 (0)