|
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>spring-boot-utils</groupId> |
8 |
| - <artifactId>spring-boot-email</artifactId> |
| 7 | + <groupId>com.github.robertotru</groupId> |
| 8 | + <artifactId>spring-boot-email-tools</artifactId> |
9 | 9 | <packaging>jar</packaging>
|
10 |
| - <version>0.0.1-SNAPSHOT</version> |
| 10 | + <version>0.1.0-SNAPSHOT</version> |
| 11 | + |
11 | 12 | <name>SpringBootEmail</name>
|
12 | 13 | <description>Utilities to deal with emails in Spring Boot using Freemarker templating</description>
|
13 | 14 |
|
14 | 15 | <parent>
|
15 | 16 | <groupId>org.springframework.boot</groupId>
|
16 | 17 | <artifactId>spring-boot-starter-parent</artifactId>
|
17 |
| - <version>1.2.7.RELEASE</version> |
| 18 | + <version>1.3.2.RELEASE</version> |
18 | 19 | <relativePath/>
|
19 | 20 | </parent>
|
20 | 21 |
|
| 22 | + <inceptionYear>2015</inceptionYear> |
| 23 | + |
| 24 | + <url>https://github.com/robertotru/spring-boot-email-tools</url> |
| 25 | + <scm> |
| 26 | + <connection>scm:git:git@github.com:robertotru/spring-boot-email-tools.git</connection> |
| 27 | + <developerConnection>scm:git:git@github.com:robertotru/spring-boot-email-tools.git</developerConnection> |
| 28 | + <url>https://github.com/robertotru/spring-boot-email-tools</url> |
| 29 | + </scm> |
| 30 | + <issueManagement> |
| 31 | + <system>GitHub Issue Tracking</system> |
| 32 | + <url/> |
| 33 | + </issueManagement> |
| 34 | + <licenses> |
| 35 | + <license> |
| 36 | + <name>The Apache License, Version 2.0</name> |
| 37 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 38 | + <distribution>repo</distribution> |
| 39 | + </license> |
| 40 | + </licenses> |
| 41 | + |
| 42 | + <properties> |
| 43 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 44 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 45 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 46 | + <java.version>1.8</java.version> |
| 47 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 48 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 49 | + </properties> |
| 50 | + |
21 | 51 | <developers>
|
22 | 52 | <developer>
|
23 | 53 | <id>rtrunfio</id>
|
|
32 | 62 | </developer>
|
33 | 63 | </developers>
|
34 | 64 |
|
35 |
| - <properties> |
36 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
37 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
38 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
39 |
| - <java.version>1.8</java.version> |
40 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
41 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
42 |
| - </properties> |
43 |
| - |
44 | 65 | <dependencies>
|
45 | 66 | <dependency>
|
46 | 67 | <groupId>org.springframework.boot</groupId>
|
|
79 | 100 | <dependency>
|
80 | 101 | <groupId>com.google.guava</groupId>
|
81 | 102 | <artifactId>guava</artifactId>
|
82 |
| - <version>18.0</version> |
| 103 | + <version>19.0</version> |
83 | 104 | </dependency>
|
84 | 105 |
|
85 | 106 | <!-- Boilerplate code killer -->
|
|
103 | 124 | <version>1.6.3</version>
|
104 | 125 | <scope>test</scope>
|
105 | 126 | </dependency>
|
106 |
| - |
| 127 | + <dependency> |
| 128 | + <groupId>it.ozimov</groupId> |
| 129 | + <artifactId>java8-hamcrest-matchers</artifactId> |
| 130 | + <version>0.3.0</version> |
| 131 | + <scope>test</scope> |
| 132 | + </dependency> |
107 | 133 | </dependencies>
|
108 | 134 |
|
| 135 | + |
| 136 | + <prerequisites> |
| 137 | + <maven>3.0.4</maven> |
| 138 | + </prerequisites> |
| 139 | + |
| 140 | + <distributionManagement> |
| 141 | + <snapshotRepository> |
| 142 | + <id>ossrh</id> |
| 143 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 144 | + </snapshotRepository> |
| 145 | + <repository> |
| 146 | + <id>ossrh</id> |
| 147 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 148 | + </repository> |
| 149 | + </distributionManagement> |
109 | 150 | <build>
|
110 | 151 | <resources>
|
111 | 152 | <resource>
|
|
122 | 163 | <artifactId>maven-surefire-plugin</artifactId>
|
123 | 164 | <version>2.18.1</version>
|
124 | 165 | </plugin>
|
| 166 | + <plugin> |
| 167 | + <groupId>org.jacoco</groupId> |
| 168 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 169 | + <version>0.7.5.201505241946</version> |
| 170 | + <executions> |
| 171 | + <execution> |
| 172 | + <goals> |
| 173 | + <goal>prepare-agent</goal> |
| 174 | + </goals> |
| 175 | + </execution> |
| 176 | + <execution> |
| 177 | + <id>report</id> |
| 178 | + <phase>test</phase> |
| 179 | + <goals> |
| 180 | + <goal>report</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + |
| 186 | + <!--Deploy plugins --> |
| 187 | + <plugin> |
| 188 | + <groupId>org.codehaus.mojo</groupId> |
| 189 | + <artifactId>versions-maven-plugin</artifactId> |
| 190 | + <version>2.2</version> |
| 191 | + <configuration> |
| 192 | + <generateBackupPoms>false</generateBackupPoms> |
| 193 | + </configuration> |
| 194 | + </plugin> |
| 195 | + <plugin> |
| 196 | + <groupId>org.apache.maven.plugins</groupId> |
| 197 | + <artifactId>maven-scm-plugin</artifactId> |
| 198 | + <version>1.9.4</version> |
| 199 | + <configuration> |
| 200 | + <pushChanges>false</pushChanges> |
| 201 | + <tag>${project.version}</tag> |
| 202 | + </configuration> |
| 203 | + </plugin> |
125 | 204 | </plugins>
|
126 | 205 | </build>
|
127 | 206 |
|
| 207 | + <profiles> |
| 208 | + <profile> |
| 209 | + <id>disable-java8-doclint</id> |
| 210 | + <activation> |
| 211 | + <jdk>[1.8,)</jdk> |
| 212 | + </activation> |
| 213 | + <build> |
| 214 | + <plugins> |
| 215 | + <plugin> |
| 216 | + <groupId>org.apache.maven.plugins</groupId> |
| 217 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 218 | + <version>2.10.3</version> |
| 219 | + <configuration> |
| 220 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 221 | + </configuration> |
| 222 | + </plugin> |
| 223 | + </plugins> |
| 224 | + </build> |
| 225 | + </profile> |
| 226 | + <profile> |
| 227 | + <id>release</id> |
| 228 | + <build> |
| 229 | + <plugins> |
| 230 | + <plugin> |
| 231 | + <groupId>org.apache.maven.plugins</groupId> |
| 232 | + <artifactId>maven-source-plugin</artifactId> |
| 233 | + <version>2.4</version> |
| 234 | + <executions> |
| 235 | + <execution> |
| 236 | + <id>attach-sources</id> |
| 237 | + <goals> |
| 238 | + <goal>jar-no-fork</goal> |
| 239 | + </goals> |
| 240 | + </execution> |
| 241 | + </executions> |
| 242 | + </plugin> |
| 243 | + <plugin> |
| 244 | + <groupId>org.apache.maven.plugins</groupId> |
| 245 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 246 | + <version>2.10.3</version> |
| 247 | + <executions> |
| 248 | + <execution> |
| 249 | + <id>attach-javadocs</id> |
| 250 | + <goals> |
| 251 | + <goal>jar</goal> |
| 252 | + </goals> |
| 253 | + </execution> |
| 254 | + </executions> |
| 255 | + </plugin> |
| 256 | + <plugin> |
| 257 | + <groupId>org.apache.maven.plugins</groupId> |
| 258 | + <artifactId>maven-gpg-plugin</artifactId> |
| 259 | + <version>1.5</version> |
| 260 | + <executions> |
| 261 | + <execution> |
| 262 | + <id>sign-artifacts</id> |
| 263 | + <phase>verify</phase> |
| 264 | + <goals> |
| 265 | + <goal>sign</goal> |
| 266 | + </goals> |
| 267 | + </execution> |
| 268 | + </executions> |
| 269 | + </plugin> |
| 270 | + <plugin> |
| 271 | + <groupId>org.sonatype.plugins</groupId> |
| 272 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 273 | + <version>1.6.6</version> |
| 274 | + <extensions>true</extensions> |
| 275 | + <configuration> |
| 276 | + <serverId>ossrh</serverId> |
| 277 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 278 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 279 | + </configuration> |
| 280 | + </plugin> |
| 281 | + </plugins> |
| 282 | + </build> |
| 283 | + </profile> |
| 284 | + </profiles> |
| 285 | + |
| 286 | + |
128 | 287 | <repositories>
|
129 | 288 | <repository>
|
130 | 289 | <id>spring-releases</id>
|
|
0 commit comments