Skip to content

Commit

Permalink
Added POM file for units
Browse files Browse the repository at this point in the history
  • Loading branch information
propensive committed Jun 11, 2024
1 parent 70f4623 commit d102477
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions etc/units/pom.xml
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>

0 comments on commit d102477

Please sign in to comment.