-
Notifications
You must be signed in to change notification settings - Fork 347
/
pom.template
42 lines (36 loc) · 1.36 KB
/
pom.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.privacy.differentialprivacy.pipelinedp4j</groupId>
<artifactId>pipelinedp4j</artifactId>
<version>RELEASE_VERSION</version>
<packaging>jar</packaging>
<name>A framework for Differential Privacy</name>
<description>
Solution for generating differential private statistics using large-scale data
processing, such as Apache Beam or Apache Spark.
</description>
<url>https://github.com/google/differential-privacy/tree/main/pipelinedp4j</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Differential Privacy Team</name>
<email>[email protected]</email>
<organization>Google</organization>
<organizationUrl>https://google.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/google/differential-privacy.git</connection>
<url>https://github.com/google/differential-privacy/tree/main/pipelinedp4j</url>
</scm>
<dependencies>
{generated_bzl_deps}
</dependencies>
</project>