Skip to content

Commit

Permalink
Add additional project metadata to POM
Browse files Browse the repository at this point in the history
  • Loading branch information
ches committed Oct 23, 2019
1 parent 4100864 commit 2ff6d32
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
</parent>

<name>Feast Core</name>
<description>Feature registry and ingestion coordinator</description>
<artifactId>feast-core</artifactId>

<build>
Expand Down
33 changes: 32 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
<project>
<modelVersion>4.0.0</modelVersion>

<name>Feast Parent</name>
<name>Feast</name>
<description>Feature Store for Machine Learning</description>
<url>${github.url}</url>

<groupId>feast</groupId>
<artifactId>feast-parent</artifactId>
<version>${revision}</version>
Expand All @@ -33,6 +36,8 @@

<properties>
<revision>0.3.0-SNAPSHOT</revision>
<github.url>https://github.com/gojek/feast</github.url>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

Expand All @@ -48,7 +53,33 @@
<opencensus.version>0.21.0</opencensus.version>
</properties>

<organization>
<name>Gojek</name>
<url>https://www.gojek.io/</url>
</organization>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>${github.url}</url>
<connection>scm:git:${github.url}.git</connection>
<developerConnection>scm:git:[email protected]:gojek/feast.git</developerConnection>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>${github.url}/issues</url>
</issueManagement>

<distributionManagement>
<!-- TODO: use a profile like local -->
<snapshotRepository>
<id>feast-snapshot</id>
<url>file:///tmp/snapshot</url>
Expand Down
1 change: 1 addition & 0 deletions sdk/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<name>Feast SDK for Java</name>
<description>SDK for registering, storing, and retrieving features</description>
<artifactId>feast-client</artifactId>

<parent>
Expand Down
1 change: 1 addition & 0 deletions serving/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

<artifactId>feast-serving</artifactId>
<name>Feast Serving</name>
<description>Feature serving API service</description>

<repositories>
<repository>
Expand Down

0 comments on commit 2ff6d32

Please sign in to comment.