-
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.
- Loading branch information
1 parent
70f4623
commit d102477
Showing
1 changed file
with
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>dev.soundness</groupId> | ||
<artifactId>quantitative-units</artifactId> | ||
<version>0.3.0</version> | ||
<licenses> | ||
<license> | ||
<name>Apache 2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<name>Quantitative Units</name> | ||
<description>Statically-typed physical units with seamless syntax</description> | ||
<url>https://soundness.dev/quantitative</url> | ||
<packaging>jar</packaging> | ||
<properties> | ||
<java.version>21</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>dev.soundness</groupId> | ||
<artifactId>gossamer-core</artifactId> | ||
<version>0.3.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>dev.soundness</groupId> | ||
<artifactId>anticipation-time</artifactId> | ||
<version>0.3.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>dev.soundness</groupId> | ||
<artifactId>anticipation-opaque</artifactId> | ||
<version>0.3.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>dev.soundness</groupId> | ||
<artifactId>hypotenuse-core</artifactId> | ||
<version>0.3.0</version> | ||
</dependency> | ||
</dependencies> | ||
<organization> | ||
<name>Propensive</name> | ||
<url>https://propensive.com/</url> | ||
</organization> | ||
<scm> | ||
<url>https://github.com/propensive/quantitative</url> | ||
<connection>scm:[email protected]:propensive/quantitative.git</connection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<id>propensive</id> | ||
<name>Jon Pretty</name> | ||
<email>[email protected]</email> | ||
<url>https://propensive.com/</url> | ||
</developer> | ||
</developers> | ||
</project> |