|
9 | 9 | <version>1.0.0.RC6</version> |
10 | 10 | <packaging>pom</packaging> |
11 | 11 |
|
12 | | - <name>spring-lemon</name> |
| 12 | + <name>${project.groupId}:${project.artifactId}</name> |
13 | 13 | <description>Helper library for Spring Boot Web Applications</description> |
| 14 | + <url>https://github.com/naturalprogrammer/spring-lemon</url> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Apache License, Version 2.0</name> |
| 19 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 20 | + <distribution>repo</distribution> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + |
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <name>Sanjay Patel</name> |
| 27 | + <email>skpatel20@gmail.com</email> |
| 28 | + <organization>naturalprogrammer.com</organization> |
| 29 | + <organizationUrl>https://www.naturalprogrammer.com</organizationUrl> |
| 30 | + </developer> |
| 31 | + </developers> |
| 32 | + |
| 33 | + <scm> |
| 34 | + <connection>scm:git:git://github.com/naturalprogrammer/spring-lemon.git</connection> |
| 35 | + <developerConnection>scm:git:git://github.com/naturalprogrammer/spring-lemon.git</developerConnection> |
| 36 | + <url>https://github.com/naturalprogrammer/spring-lemon</url> |
| 37 | + <tag>HEAD</tag> |
| 38 | + </scm> |
14 | 39 |
|
15 | 40 | <parent> |
16 | 41 | <groupId>org.springframework.boot</groupId> |
|
58 | 83 | <plugins> |
59 | 84 |
|
60 | 85 | <plugin> |
61 | | - <groupId>org.apache.maven.plugins</groupId> |
62 | | - <artifactId>maven-source-plugin</artifactId> |
63 | | - <executions> |
64 | | - <execution> |
65 | | - <id>attach-sources</id> |
66 | | - <goals> |
67 | | - <goal>jar</goal> |
68 | | - </goals> |
69 | | - </execution> |
70 | | - </executions> |
71 | | - </plugin> |
72 | | - |
73 | | - <plugin> |
74 | | - <groupId>org.apache.maven.plugins</groupId> |
75 | | - <artifactId>maven-javadoc-plugin</artifactId> |
| 86 | + <groupId>org.sonatype.plugins</groupId> |
| 87 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 88 | + <version>1.6.8</version> |
| 89 | + <extensions>true</extensions> |
76 | 90 | <configuration> |
77 | | - <failOnError>false</failOnError> |
| 91 | + <serverId>ossrh</serverId> |
| 92 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 93 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
78 | 94 | </configuration> |
79 | | - <executions> |
80 | | - <execution> |
81 | | - <id>attach-javadocs</id> |
82 | | - <goals> |
83 | | - <goal>jar</goal> |
84 | | - </goals> |
85 | | - </execution> |
86 | | - </executions> |
87 | 95 | </plugin> |
88 | 96 |
|
89 | 97 | </plugins> |
|
119 | 127 | </pluginRepository> |
120 | 128 | </pluginRepositories> |
121 | 129 |
|
| 130 | + <distributionManagement> |
| 131 | + <snapshotRepository> |
| 132 | + <id>ossrh</id> |
| 133 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> |
| 134 | + </snapshotRepository> |
| 135 | + </distributionManagement> |
| 136 | + |
| 137 | + <profiles> |
| 138 | + <profile> |
| 139 | + <id>release</id> |
| 140 | + <build> |
| 141 | + <plugins> |
| 142 | + |
| 143 | + <plugin> |
| 144 | + <groupId>org.apache.maven.plugins</groupId> |
| 145 | + <artifactId>maven-source-plugin</artifactId> |
| 146 | + <version>3.2.1</version> |
| 147 | + <executions> |
| 148 | + <execution> |
| 149 | + <id>attach-sources</id> |
| 150 | + <goals> |
| 151 | + <goal>jar-no-fork</goal> |
| 152 | + </goals> |
| 153 | + </execution> |
| 154 | + </executions> |
| 155 | + </plugin> |
| 156 | + |
| 157 | + <plugin> |
| 158 | + <groupId>org.apache.maven.plugins</groupId> |
| 159 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 160 | + <version>3.2.0</version> |
| 161 | + <executions> |
| 162 | + <execution> |
| 163 | + <id>attach-javadocs</id> |
| 164 | + <goals> |
| 165 | + <goal>jar</goal> |
| 166 | + </goals> |
| 167 | + </execution> |
| 168 | + </executions> |
| 169 | + </plugin> |
| 170 | + |
| 171 | + <plugin> |
| 172 | + <groupId>org.apache.maven.plugins</groupId> |
| 173 | + <artifactId>maven-gpg-plugin</artifactId> |
| 174 | + <version>1.6</version> |
| 175 | + <executions> |
| 176 | + <execution> |
| 177 | + <id>sign-artifacts</id> |
| 178 | + <phase>verify</phase> |
| 179 | + <goals> |
| 180 | + <goal>sign</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + |
| 186 | + </plugins> |
| 187 | + </build> |
| 188 | + </profile> |
| 189 | + </profiles> |
| 190 | + |
122 | 191 | </project> |
0 commit comments