-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
108 lines (102 loc) · 3.92 KB
/
pom.xml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.nanomad</groupId>
<artifactId>nullaway-junit-model</artifactId>
<version>1.4-SNAPSHOT</version>
<name>NullAway JUnit Library Model</name>
<description>JUnit Library Model for Uber's NullAway</description>
<inceptionYear>2018</inceptionYear>
<organization>
<name>Giovanni Condello</name>
</organization>
<scm>
<connection>scm:git:https://github.com/nanomad/nullaway-junit-model.git</connection>
<developerConnection>scm:git:https://github.com/nanomad/nullaway-junit-model.git</developerConnection>
<url>https://github.com/nanomad/nullaway-junit-model</url>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>MIT</name>
<url>LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Giovanni Condello</name>
<email>condellog@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.uber.nullaway</groupId>
<artifactId>nullaway</artifactId>
<version>0.3.0</version>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc4</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.14</version>
<configuration>
<licenseName>mit</licenseName>
</configuration>
<executions>
<execution>
<id>add-license-info</id>
<goals>
<goal>update-file-header</goal>
<goal>update-project-license</goal>
</goals>
<phase>process-sources</phase>
</execution>
<execution>
<id>verify-license-info</id>
<goals>
<goal>check-file-header</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<goals>install</goals>
</configuration>
</plugin>
</plugins>
</build>
</project>