Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
gpg_private_key: ${{ secrets.gpg_private_key }}
gpg_passphrase: ${{ secrets.gpg_passphrase }}
nexus_username: ${{ secrets.nexus_username }}
nexus_password: ${{ secrets.nexus_password }}
nexus_username: ${{ secrets.MAVEN_USERNAME }}
nexus_password: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
maven_args: "-DskipTests"

22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.upb.cs.swt</groupId>
<groupId>org.soot-oss</groupId>
<artifactId>heros</artifactId>
<version>1.2.4-SNAPSHOT</version>
<version>1.2.4</version>
<name>Heros IFDS/IDE Solver</name>
<description>Heros is a generic implementation of an IFDS/IDE Solver that can be plugged into existing, Java-based
program analysis frameworks. A reference connector exists for the Soot framework.
</description>
<url>https://github.com/Sable/heros</url>
<organization>
<name>Secure Software Engineering Group - University of Paderborn</name>
<url>https://www.hni.uni-paderborn.de/en/software-engineering/</url>
<name>Soot OSS</name>
<url>https://soot-oss.org/</url>
</organization>
<licenses>
<license>
Expand All @@ -23,9 +23,9 @@
<developers>
<developer>
<name>Manuel Benz</name>
<email>manuel.benz@upb.de</email>
<organization>University of Paderborn</organization>
<organizationUrl>https://www.hni.uni-paderborn.de/en/software-engineering/</organizationUrl>
<email>manuel.benz@codeshield.de</email>
<organization>CodeShield GmbH</organization>
<organizationUrl>https://codeshield.de/</organizationUrl>
</developer>
<developer>
<name>Eric Bodden</name>
Expand All @@ -41,9 +41,9 @@
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:Sable/heros.git</connection>
<developerConnection>scm:git:git@github.com:Sable/heros.git</developerConnection>
<url>https://github.com/Sable/heros/tree/master</url>
<connection>scm:git:git@github.com:soot-oss/heros.git</connection>
<developerConnection>scm:git:git@github.com:soot-oss/heros.git</developerConnection>
<url>https://github.com/soot-oss/heros/tree/master</url>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down Expand Up @@ -104,7 +104,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>[24.1.1,)</version>
<version>[33.5.0,)</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down