Skip to content

Commit

Permalink
Update build and POM file
Browse files Browse the repository at this point in the history
  • Loading branch information
propensive committed Jun 5, 2024
1 parent 3ca412e commit e970b70
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 2 deletions.
57 changes: 57 additions & 0 deletions etc/core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?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>iridescence-core</artifactId>
<version>0.1.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>Iridescence</name>
<description>Sophisticated representation of color</description>
<url>https://soundness.dev/iridescence</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>anticipation-color</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>dev.soundness</groupId>
<artifactId>contextual-core</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>dev.soundness</groupId>
<artifactId>hypotenuse-core</artifactId>
<version>0.2.0</version>
</dependency>
</dependencies>
<organization>
<name>Propensive</name>
<url>https://propensive.com/</url>
</organization>
<scm>
<url>https://github.com/propensive/iridescence</url>
<connection>scm:[email protected]:propensive/iridescence.git</connection>
</scm>
<developers>
<developer>
<id>propensive</id>
<name>Jon Pretty</name>
<email>[email protected]</email>
<url>https://propensive.com/</url>
</developer>
</developers>
</project>
2 changes: 1 addition & 1 deletion fury
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ project iridescence
module core
compiler scala
sources src/core
include cardinality/core digression/core contextual/core anticipation/color hypotenuse/core anticipation/opaque
include contextual/core anticipation/color hypotenuse/core

module test
compiler scala
Expand Down
1 change: 0 additions & 1 deletion src/test/tests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package iridescence

import probably.*
import rudiments.*
import gossamer.*

given ColorProfile = colorProfiles.daylight
Expand Down

0 comments on commit e970b70

Please sign in to comment.