Skip to content

Commit 0bbc430

Browse files
committed
#1339 up fix
1 parent 8b1d39e commit 0bbc430

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/up.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
git fetch --tags --force && \
3535
latest=$(git tag --sort=creatordate | tail -1) && \
3636
sed -E -i "s/<version>[^<]+/<version>${latest}/g" README.md && \
37-
sed -E -i "s/takes-[^-]+/takes-${latest}/g" README.md && \
37+
sed -E -i "s/takes-[0-9][^-]+/takes-${latest}/g" README.md && \
3838
sed -E -i "s/org.takes:takes:.+/org.takes:takes::${latest}/g" README.md
3939
- uses: peter-evans/create-pull-request@v7
4040
with:

.rultor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ release:
4242
gpg --allow-secret-key-import --no-tty --batch --import /home/r/secring.gpg
4343
mvn versions:set "-DnewVersion=${tag}"
4444
git commit -am "${tag}"
45+
export MAVEN_OPTS="--add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED"
4546
mvn clean deploy -Ptakes -Psonatype -Pqulice -Dinvoker.skip --errors --settings ../settings.xml

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ If you're using Maven, this is how your `pom.xml` should look like:
153153
<plugin>
154154
<groupId>org.codehaus.mojo</groupId>
155155
<artifactId>exec-maven-plugin</artifactId>
156-
<version>1.24.5</version>
157156
<executions>
158157
<execution>
159158
<id>start-server</id>
@@ -1106,7 +1105,6 @@ the `restfb` API in your project:
11061105
<dependency>
11071106
<groupId>com.restfb</groupId>
11081107
<artifactId>restfb</artifactId>
1109-
<version>1.24.5</version>
11101108
<scope>runtime</scope>
11111109
</dependency>
11121110
```

0 commit comments

Comments
 (0)