Skip to content

Commit de9ccf7

Browse files
committed
Merge branch 'develop'
2 parents dd5b926 + d805c2d commit de9ccf7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+648
-437
lines changed

.drone.yml

Lines changed: 0 additions & 82 deletions
This file was deleted.

.m2/settings.xml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.whitesource

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"scanSettings": {
3+
"baseBranches": []
4+
},
5+
"checkRunSettings": {
6+
"vulnerableCheckRunConclusionLevel": "failure",
7+
"displayMode": "diff"
8+
},
9+
"issueSettings": {
10+
"minSeverityLevel": "LOW"
11+
}
12+
}

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,15 @@ Only if you start using the JMS, it could be helpful to add a **module-info.java
4040
Add the following lines, switch inside the pom.xml to the JDK version you prefer,
4141
start a **mvn clean install** and be happy ;-)
4242

43-
4443
```java
4544
module rapidpm.functional.reactive {
4645
exports org.rapidpm.frp;
47-
exports org.rapidpm.frp.functions;
48-
exports org.rapidpm.frp.matcher;
49-
exports org.rapidpm.frp.memoizer;
50-
exports org.rapidpm.frp.model;
51-
exports org.rapidpm.frp.model.serial;
52-
exports org.rapidpm.frp.reactive;
46+
exports com.svenruppert.functional.functions;
47+
exports com.svenruppert.functional.matcher;
48+
exports com.svenruppert.functional.memoizer;
49+
exports com.svenruppert.functional.model;
50+
exports com.svenruppert.functional.model.serial;
51+
exports com.svenruppert.functional.reactive;
5352
}
5453
```
5554

@@ -72,6 +71,9 @@ This Lib is working with
7271
<version>--version--</version>
7372
</dependency>
7473
```
74+
## 02.00.00-SRU
75+
Changing to new namespace. The package will be under
76+
com.svenruppert:functional-reactive now
7577

7678

7779
## 01.01.00-RPM-SNAPSHOT

_data/module-info.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
*/
1616
module rapidpm.functional.reactive {
1717
exports org.rapidpm.frp;
18-
exports org.rapidpm.frp.functions;
19-
exports org.rapidpm.frp.matcher;
20-
exports org.rapidpm.frp.memoizer;
21-
exports org.rapidpm.frp.model;
22-
exports org.rapidpm.frp.model.serial;
23-
exports org.rapidpm.frp.reactive;
18+
exports com.svenruppert.functional.functions;
19+
exports com.svenruppert.functional.matcher;
20+
exports com.svenruppert.functional.memoizer;
21+
exports com.svenruppert.functional.model;
22+
exports com.svenruppert.functional.model.serial;
23+
exports com.svenruppert.functional.reactive;
2424
}

_data/nexus/settings.xml

Lines changed: 0 additions & 70 deletions
This file was deleted.

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
# limitations under the License.
1616
#
1717

18-
docker rm deploy-functioanl-reactive
18+
docker rm deploy-functional-reactive
1919
docker-compose up

docker-compose.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@
1717
version: '3.5'
1818

1919
services:
20-
deploy:
21-
# image: svenruppert/maven-3.6.1-adopt:1.8.212-04
22-
image: svenruppert/deploy:1.8.0-222
23-
container_name: deploy-functioanl-reactive
24-
hostname: deploy-functioanl-reactive
25-
volumes:
26-
- /var/run/docker.sock:/tmp/docker.sock:ro
27-
- $PWD/:/usr/src/mymaven
28-
working_dir: /usr/src/mymaven
29-
# command: 'mvn help:active-profiles
30-
command: 'mvn license:format clean deploy
31-
-P_release_prepare
32-
-P_release_sign-artifacts
33-
-Dmaven.test.skip=true '
20+
deploy:
21+
image: svenruppert/deploy:21.0.1-zulu
22+
container_name: deploy-functional-reactive
23+
hostname: deploy-functional-reactive
24+
volumes:
25+
- /var/run/docker.sock:/tmp/docker.sock:ro
26+
- $PWD/:/usr/src/mymaven
27+
working_dir: /usr/src/mymaven
28+
# command: 'mvn help:active-profiles
29+
command: 'mvn license:format clean deploy
30+
-P_release_prepare
31+
-P_release_sign-artifacts
32+
-Dmaven.test.skip=true'

docker_compile_locale.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ docker run \
2020
--rm \
2121
--name compile \
2222
-v "$(pwd)":/usr/src/mymaven \
23+
-v "$(pwd)":/usr/src/mymaven \
2324
-w /usr/src/mymaven \
24-
svenruppert/maven-3.6.1-adopt:1.8.212-04 \
25+
svenruppert/zulu-dev:21.0.1-zulu \
2526
mvn clean install

jitpack.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
jdk:
2+
- 21.0.2-open
3+
before_install:
4+
- sdk install maven 3.9.1

0 commit comments

Comments
 (0)