|
55 | 55 |
|
56 | 56 | <licenses> |
57 | 57 | <license> |
58 | | - <name>MIT License</name> |
59 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 58 | + <name>Apache Software License, Version 2.0</name> |
| 59 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
60 | 60 | </license> |
61 | 61 | </licenses> |
62 | 62 |
|
|
96 | 96 |
|
97 | 97 | <profiles> |
98 | 98 | <profile> |
99 | | - <id>release</id> |
| 99 | + <id>deploy</id> |
100 | 100 | <build> |
101 | 101 | <plugins> |
| 102 | + |
102 | 103 | <plugin> |
103 | 104 | <groupId>org.apache.maven.plugins</groupId> |
104 | 105 | <artifactId>maven-source-plugin</artifactId> |
|
107 | 108 | <execution> |
108 | 109 | <id>attach-sources</id> |
109 | 110 | <goals> |
110 | | - <goal>jar</goal> |
| 111 | + <goal>jar-no-fork</goal> |
111 | 112 | </goals> |
112 | 113 | </execution> |
113 | 114 | </executions> |
114 | 115 | </plugin> |
| 116 | + |
115 | 117 | <plugin> |
116 | 118 | <groupId>org.apache.maven.plugins</groupId> |
117 | 119 | <artifactId>maven-javadoc-plugin</artifactId> |
|
125 | 127 | </execution> |
126 | 128 | </executions> |
127 | 129 | </plugin> |
| 130 | + |
128 | 131 | <plugin> |
129 | 132 | <groupId>org.apache.maven.plugins</groupId> |
130 | 133 | <artifactId>maven-gpg-plugin</artifactId> |
|
136 | 139 | <goals> |
137 | 140 | <goal>sign</goal> |
138 | 141 | </goals> |
| 142 | + <configuration> |
| 143 | + <gpgArguments> |
| 144 | + <arg>--pinentry-mode</arg> |
| 145 | + <arg>loopback</arg> |
| 146 | + </gpgArguments> |
| 147 | + </configuration> |
139 | 148 | </execution> |
140 | 149 | </executions> |
141 | 150 | </plugin> |
| 151 | + |
142 | 152 | </plugins> |
143 | 153 | </build> |
144 | 154 | </profile> |
145 | 155 | </profiles> |
146 | 156 |
|
147 | 157 | <build> |
148 | 158 | <plugins> |
| 159 | + |
149 | 160 | <plugin> |
150 | 161 | <groupId>org.apache.maven.plugins</groupId> |
151 | 162 | <artifactId>maven-surefire-plugin</artifactId> |
152 | 163 | <version>3.0.0-M5</version> |
153 | 164 | </plugin> |
| 165 | + |
154 | 166 | <plugin> |
155 | 167 | <groupId>org.apache.maven.plugins</groupId> |
156 | 168 | <artifactId>maven-failsafe-plugin</artifactId> |
157 | 169 | <version>3.0.0-M5</version> |
158 | 170 | </plugin> |
| 171 | + |
159 | 172 | <plugin> |
160 | 173 | <groupId>org.apache.maven.plugins</groupId> |
161 | 174 | <artifactId>maven-compiler-plugin</artifactId> |
|
166 | 179 | <encoding>${project.build.sourceEncoding}</encoding> |
167 | 180 | </configuration> |
168 | 181 | </plugin> |
| 182 | + |
169 | 183 | <plugin> |
170 | 184 | <groupId>org.sonatype.plugins</groupId> |
171 | 185 | <artifactId>nexus-staging-maven-plugin</artifactId> |
|
177 | 191 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
178 | 192 | </configuration> |
179 | 193 | </plugin> |
| 194 | + |
180 | 195 | <plugin> |
181 | 196 | <groupId>org.jacoco</groupId> |
182 | 197 | <artifactId>jacoco-maven-plugin</artifactId> |
|
197 | 212 | </execution> |
198 | 213 | </executions> |
199 | 214 | </plugin> |
| 215 | + |
200 | 216 | </plugins> |
201 | 217 | </build> |
202 | 218 | </project> |
0 commit comments