|
11 | 11 | <description>Java SDK for integrating apps with CoScale Web Performance Monitoring platform.</description> |
12 | 12 | <url>http://www.coscale.com</url> |
13 | 13 |
|
| 14 | + <distributionManagement> |
| 15 | + <snapshotRepository> |
| 16 | + <id>ossrh</id> |
| 17 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 18 | + </snapshotRepository> |
| 19 | + <repository> |
| 20 | + <id>ossrh</id> |
| 21 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 22 | + </repository> |
| 23 | + </distributionManagement> |
| 24 | + |
14 | 25 | <properties> |
15 | 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 27 | </properties> |
|
23 | 34 | <developers> |
24 | 35 | <developer> |
25 | 36 | <name>Cristian Ciutea</name> |
26 | | - <email>suppport@coscale.com</email> |
| 37 | + <email>support@coscale.com</email> |
27 | 38 | <organization>CoScale</organization> |
28 | 39 | <organizationUrl>http://www.coscale.com</organizationUrl> |
29 | 40 | </developer> |
|
35 | 46 | < url> [email protected]:CoScale/coscale-sdk-java.git</ url> |
36 | 47 | </scm> |
37 | 48 |
|
| 49 | + |
38 | 50 | <build> |
39 | 51 | <plugins> |
40 | 52 | <plugin> |
|
46 | 58 | <target>1.7</target> |
47 | 59 | </configuration> |
48 | 60 | </plugin> |
| 61 | + <plugin> |
| 62 | + <groupId>org.sonatype.plugins</groupId> |
| 63 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 64 | + <version>1.6.3</version> |
| 65 | + <extensions>true</extensions> |
| 66 | + <configuration> |
| 67 | + <serverId>ossrh</serverId> |
| 68 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 69 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 70 | + </configuration> |
| 71 | + </plugin> |
49 | 72 | <plugin> |
50 | 73 | <groupId>org.apache.maven.plugins</groupId> |
51 | | - <artifactId>maven-gpg-plugin</artifactId> |
52 | | - <version>1.5</version> |
| 74 | + <artifactId>maven-source-plugin</artifactId> |
| 75 | + <version>2.2.1</version> |
| 76 | + <executions> |
| 77 | + <execution> |
| 78 | + <id>attach-sources</id> |
| 79 | + <goals> |
| 80 | + <goal>jar-no-fork</goal> |
| 81 | + </goals> |
| 82 | + </execution> |
| 83 | + </executions> |
53 | 84 | </plugin> |
54 | 85 | <plugin> |
55 | 86 | <groupId>org.apache.maven.plugins</groupId> |
56 | | - <artifactId>maven-release-plugin</artifactId> |
57 | | - <version>2.4.2</version> |
| 87 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 88 | + <version>2.9.1</version> |
| 89 | + <executions> |
| 90 | + <execution> |
| 91 | + <id>attach-javadocs</id> |
| 92 | + <goals> |
| 93 | + <goal>jar</goal> |
| 94 | + </goals> |
| 95 | + </execution> |
| 96 | + </executions> |
58 | 97 | </plugin> |
59 | 98 | </plugins> |
| 99 | + |
| 100 | + <pluginManagement> |
| 101 | + <plugins> |
| 102 | + <!-- remove M2E warning complaining about usage of maven-enforcer-plugin |
| 103 | + in parent --> |
| 104 | + <plugin> |
| 105 | + <groupId>org.eclipse.m2e</groupId> |
| 106 | + <artifactId>lifecycle-mapping</artifactId> |
| 107 | + <version>1.0.0</version> |
| 108 | + <configuration> |
| 109 | + <lifecycleMappingMetadata> |
| 110 | + <pluginExecutions> |
| 111 | + <pluginExecution> |
| 112 | + <pluginExecutionFilter> |
| 113 | + <groupId>org.apache.maven.plugins</groupId> |
| 114 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 115 | + <versionRange>[1.0.0,)</versionRange> |
| 116 | + <goals> |
| 117 | + <goal>enforce</goal> |
| 118 | + </goals> |
| 119 | + </pluginExecutionFilter> |
| 120 | + <action> |
| 121 | + <ignore /> |
| 122 | + </action> |
| 123 | + </pluginExecution> |
| 124 | + </pluginExecutions> |
| 125 | + </lifecycleMappingMetadata> |
| 126 | + </configuration> |
| 127 | + </plugin> |
| 128 | + <plugin> |
| 129 | + <groupId>org.apache.maven.plugins</groupId> |
| 130 | + <artifactId>maven-release-plugin</artifactId> |
| 131 | + <version>2.4.2</version> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-gpg-plugin</artifactId> |
| 136 | + <version>1.5</version> |
| 137 | + <executions> |
| 138 | + <execution> |
| 139 | + <id>sign-artifacts</id> |
| 140 | + <phase>verify</phase> |
| 141 | + <goals> |
| 142 | + <goal>sign</goal> |
| 143 | + </goals> |
| 144 | + </execution> |
| 145 | + </executions> |
| 146 | + </plugin> |
| 147 | + </plugins> |
| 148 | + </pluginManagement> |
60 | 149 | </build> |
61 | 150 |
|
| 151 | + |
62 | 152 | <dependencies> |
63 | 153 | <dependency> |
64 | 154 | <groupId>com.fasterxml.jackson.core</groupId> |
|
0 commit comments