Skip to content

Commit ca72d20

Browse files
author
Manuel Benz
committed
fix pom and readme for release
1 parent 7e71340 commit ca72d20

File tree

2 files changed

+9
-31
lines changed

2 files changed

+9
-31
lines changed

README.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/Sable/soot)
22

3-
[![Build Status](https://soot-build.cs.uni-paderborn.de/jenkins/job/soot/job/soot-pipeline/job/develop/badge/icon)](https://soot-build.cs.uni-paderborn.de/jenkins/job/soot/job/soot-pipeline/job/develop/)
3+
[![Build Status](https://soot-build.cs.uni-paderborn.de/jenkins/job/soot/job/soot-pipeline/job/master/badge/icon)](https://soot-build.cs.uni-paderborn.de/jenkins/job/soot/job/soot-pipeline/job/master/)
44

55
# Using Soot? Let us know about it!
66
We are regularly applying for funding to help us maintain Soot. You can help us immensely by letting us know about [**projects that use Soot**](https://github.com/Sable/soot/wiki/Users-of-Soot), both commercially or in the form of research tools.
@@ -38,7 +38,7 @@ For detailed information please also consider the Soot's [JavaDoc and Options](h
3838

3939
# Including Soot in your Project
4040

41-
A Soot SNAPSHOT is currently built for each commit to the `develop` branch. You can include Soot as
41+
A Soot release is currently built for each commit to the `master` branch. You can include Soot as
4242
a dependency via Maven, Gradle, SBT, etc using the following coordinates:
4343

4444

@@ -50,24 +50,14 @@ a dependency via Maven, Gradle, SBT, etc using the following coordinates:
5050
<version>4.1.0</version>
5151
</dependency>
5252
</dependencies>
53-
<repositories>
54-
<repository>
55-
<id>sonatype-snapshots</id>
56-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
57-
<releases>
58-
<enabled>false</enabled>
59-
</releases>
60-
</repository>
61-
</repositories>
62-
6353
```
6454

65-
You can also obtain older builds of the `master` branch. A complete listing of builds can be found in [Sonatype's SNAPSHOT repository](https://oss.sonatype.org/content/repositories/snapshots/ca/mcgill/sable/soot).
55+
You can also obtain older builds of the `master` branch. A complete listing of builds can be found on [Maven Central](https://repo.maven.apache.org/maven2/ca/mcgill/sable/soot/).
6656

6757
# How do I obtain Soot without Maven?
6858
**We recommend using Soot with Maven**
6959

70-
You can obtain the latest realease build of Soot [directly](https://repo1.maven.org/maven2/ca/mcgill/sable/soot/).
60+
You can obtain the latest release build of Soot [directly](https://repo1.maven.org/maven2/ca/mcgill/sable/soot/).
7161

7262
The `soot-RELEASE-jar-with-dependencies.jar` file is an all-in-one file that also contains all the required libraries.
7363

pom.xml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>ca.mcgill.sable</groupId>
77
<artifactId>soot</artifactId>
88
<name>Soot - a J*va Optimization Framework</name>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.1.0</version>
1010
<description>A Java Optimization Framework</description>
1111
<url>https://sable.github.io/soot/</url>
1212
<organization>
@@ -484,7 +484,7 @@
484484
<dependency>
485485
<groupId>de.upb.cs.swt</groupId>
486486
<artifactId>axml</artifactId>
487-
<version>2.0.0-SNAPSHOT</version>
487+
<version>2.0.0</version>
488488
</dependency>
489489
<dependency>
490490
<groupId>ca.mcgill.sable</groupId>
@@ -496,14 +496,14 @@
496496
<dependency>
497497
<groupId>de.upb.cs.swt</groupId>
498498
<artifactId>heros</artifactId>
499-
<version>1.2.0-SNAPSHOT</version>
499+
<version>1.2.0</version>
500500
</dependency>
501501
<!-- Uploaded to http://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/
502502
from the nightly build server -->
503503
<dependency>
504504
<groupId>ca.mcgill.sable</groupId>
505505
<artifactId>jasmin</artifactId>
506-
<version>3.0.2-SNAPSHOT</version>
506+
<version>3.0.2</version>
507507
</dependency>
508508
<!-- Logging dependencies -->
509509
<dependency>
@@ -573,22 +573,10 @@
573573
</dependency>
574574
</dependencies>
575575

576-
<repositories>
577-
<repository>
578-
<id>sonatype-snapshot</id>
579-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
580-
<releases>
581-
<enabled>false</enabled>
582-
</releases>
583-
<snapshots>
584-
<enabled>true</enabled>
585-
</snapshots>
586-
</repository>
587-
</repositories>
588576
<distributionManagement>
589577
<snapshotRepository>
590578
<id>ossrh</id>
591-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
579+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
592580
</snapshotRepository>
593581
</distributionManagement>
594582
<profiles>

0 commit comments

Comments
 (0)