|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>nightfall</groupId> |
8 | | - <artifactId>api</artifactId> |
9 | | - <version>0.1</version> |
| 7 | + <groupId>ai.nightfall</groupId> |
| 8 | + <artifactId>scan-api</artifactId> |
| 9 | + <version>1.0.0</version> |
| 10 | + |
| 11 | + <name>${project.groupId}:${project.artifactId}</name> |
| 12 | + <description>The Nightfall Scanner provides Java bindings for our developer platform, which allows clients |
| 13 | + to scan their data for sensitive information such as PII and PHI.</description> |
| 14 | + <url>https://docs.nightfall.ai/</url> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>MIT License</name> |
| 19 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>Evan Fuller</name> |
| 26 | + |
| 27 | + <organization>Nightfall AI</organization> |
| 28 | + <organizationUrl>https://nightfall.ai/</organizationUrl> |
| 29 | + </developer> |
| 30 | + </developers> |
| 31 | + |
| 32 | + <scm> |
| 33 | + <connection>scm:git:git://github.com/nightfallai/nightfall-java-sdk.git</connection> |
| 34 | + <developerConnection>scm:git:ssh://github.com/nightfallai/nightfall-java-sdk.git</developerConnection> |
| 35 | + <url>https://github.com/nightfallai/nightfall-java-sdk</url> |
| 36 | + </scm> |
10 | 37 |
|
11 | 38 | <properties> |
12 | 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
44 | 71 | </plugin> |
45 | 72 | <plugin> |
46 | 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | + <artifactId>maven-source-plugin</artifactId> |
| 75 | + <version>3.2.0</version> |
| 76 | + <executions> |
| 77 | + <execution> |
| 78 | + <id>attach-sources</id> |
| 79 | + <goals> |
| 80 | + <goal>jar</goal> |
| 81 | + </goals> |
| 82 | + </execution> |
| 83 | + </executions> |
| 84 | + </plugin> |
| 85 | + <plugin> |
| 86 | + <groupId>org.apache.maven.plugins</groupId> |
| 87 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 88 | + <version>3.2.0</version> |
| 89 | + <executions> |
| 90 | + <execution> |
| 91 | + <id>attach-javadocs</id> |
| 92 | + <goals> |
| 93 | + <goal>jar</goal> |
| 94 | + </goals> |
| 95 | + </execution> |
| 96 | + </executions> |
| 97 | + </plugin> |
| 98 | + <plugin> |
47 | 99 | <artifactId>maven-checkstyle-plugin</artifactId> |
48 | 100 | <version>3.1.2</version> |
49 | 101 | <dependencies> |
|
0 commit comments