forked from sosy-lab/java-smt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bitwuzla: publish library into Maven repository.
- Loading branch information
1 parent
7165b25
commit fbb8df1
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<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"> | ||
|
||
<!-- | ||
This file is part of JavaSMT, | ||
an API wrapper for a collection of SMT solvers: | ||
https://github.com/sosy-lab/java-smt | ||
SPDX-FileCopyrightText: 2024 Dirk Beyer <https://www.sosy-lab.org> | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.sosy-lab</groupId> | ||
<artifactId>javasmt-solver-bitwuzla</artifactId> | ||
<packaging>pom</packaging> | ||
<name>javasmt-solver-bitwuzla</name> | ||
<version>${stage.revision}</version> | ||
<description>SMT solver Bitwuzla for use in JavaSMT</description> | ||
<url>https://github.com/sosy-lab/java-smt</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>https://opensource.org/licenses/MIT</url> | ||
</license> | ||
</licenses> | ||
|
||
<organization> | ||
<name>Software Systems Lab</name> | ||
<url>https://www.sosy-lab.org/</url> | ||
</organization> | ||
|
||
<scm> | ||
<url>https://github.com/sosy-lab/java-smt/</url> | ||
<connection>scm:git:git://github.com/sosy-lab/java-smt.git</connection> | ||
<developerConnection>scm:git:[email protected]:sosy-lab/java-smt.git</developerConnection> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Karlheinz Friedberger</name> | ||
<email>[email protected]</email> | ||
<organization>Software Systems Lab</organization> | ||
<url>https://www.sosy-lab.org/people/friedberger/</url> | ||
<roles> | ||
<role>project maintainer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Dirk Beyer</name> | ||
<email>[email protected]</email> | ||
<url>https://www.sosy-lab.org/people/beyer/</url> | ||
<organization>Software Systems Lab</organization> | ||
<organizationUrl>http://www.sosy-lab.org/</organizationUrl> | ||
<roles> | ||
<role>project manager</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
</project> |