Skip to content

Commit aacb264

Browse files
cheswoop
authored andcommitted
Add additional project metadata to POM
1 parent b0ae773 commit aacb264

4 files changed

Lines changed: 35 additions & 1 deletion

File tree

core/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
</parent>
2828

2929
<name>Feast Core</name>
30+
<description>Feature registry and ingestion coordinator</description>
3031
<artifactId>feast-core</artifactId>
3132

3233
<build>

pom.xml

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
<project>
1919
<modelVersion>4.0.0</modelVersion>
2020

21-
<name>Feast Parent</name>
21+
<name>Feast</name>
22+
<description>Feature Store for Machine Learning</description>
23+
<url>${github.url}</url>
24+
2225
<groupId>feast</groupId>
2326
<artifactId>feast-parent</artifactId>
2427
<version>${revision}</version>
@@ -33,6 +36,8 @@
3336

3437
<properties>
3538
<revision>0.3.0-SNAPSHOT</revision>
39+
<github.url>https://github.com/gojek/feast</github.url>
40+
3641
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3742
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3843

@@ -48,7 +53,33 @@
4853
<opencensus.version>0.21.0</opencensus.version>
4954
</properties>
5055

56+
<organization>
57+
<name>Gojek</name>
58+
<url>https://www.gojek.io/</url>
59+
</organization>
60+
61+
<licenses>
62+
<license>
63+
<name>Apache License, Version 2.0</name>
64+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
65+
<distribution>repo</distribution>
66+
</license>
67+
</licenses>
68+
69+
<scm>
70+
<url>${github.url}</url>
71+
<connection>scm:git:${github.url}.git</connection>
72+
<developerConnection>scm:git:[email protected]:gojek/feast.git</developerConnection>
73+
<tag>HEAD</tag>
74+
</scm>
75+
76+
<issueManagement>
77+
<system>GitHub Issues</system>
78+
<url>${github.url}/issues</url>
79+
</issueManagement>
80+
5181
<distributionManagement>
82+
<!-- TODO: use a profile like local -->
5283
<snapshotRepository>
5384
<id>feast-snapshot</id>
5485
<url>file:///tmp/snapshot</url>

sdk/java/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<name>Feast SDK for Java</name>
8+
<description>SDK for registering, storing, and retrieving features</description>
89
<artifactId>feast-client</artifactId>
910

1011
<parent>

serving/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
<artifactId>feast-serving</artifactId>
3030
<name>Feast Serving</name>
31+
<description>Feature serving API service</description>
3132

3233
<repositories>
3334
<repository>

0 commit comments

Comments
 (0)