|
5 | 5 | <version>4.1.0-SNAPSHOT</version>
|
6 | 6 | <packaging>pom</packaging>
|
7 | 7 | <name>Cucumber-JVM: Scala</name>
|
| 8 | + <description>Cucumber for Scala</description> |
8 | 9 | <url>http://cucumber.io/</url>
|
9 | 10 |
|
10 | 11 | <parent>
|
|
17 | 18 | <maven>${minimum.maven.version}</maven>
|
18 | 19 | </prerequisites>
|
19 | 20 |
|
| 21 | + <developers> |
| 22 | + <developer> |
| 23 | + <id>glib-briia</id> |
| 24 | + <name>Glib Briia</name> |
| 25 | + |
| 26 | + <organization>AssertThat</organization> |
| 27 | + <organizationUrl>https://www.assertthat.com</organizationUrl> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
20 | 31 | <properties>
|
21 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
22 | 33 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
42 | 53 | </license>
|
43 | 54 | </licenses>
|
44 | 55 | <scm>
|
45 |
| - <connection>scm:git:git://github.com/cucumber/cucumber-jvm.git</connection> |
46 |
| - < developerConnection>scm:git: [email protected]:cucumber/cucumber-jvm.git</ developerConnection> |
47 |
| - <url>git://github.com/cucumber/cucumber-jvm.git</url> |
| 56 | + <connection>scm:git:git://github.com/cucumber/cucumber-jvm-scala.git</connection> |
| 57 | + < developerConnection>scm:git: [email protected]:cucumber/cucumber-jvm -scala.git</ developerConnection> |
| 58 | + <url>git://github.com/cucumber/cucumber-jvm-scala.git</url> |
48 | 59 | <tag>cucumber-jvm-2.0.0</tag>
|
49 | 60 | </scm>
|
50 | 61 |
|
|
87 | 98 | </pluginRepository>
|
88 | 99 | </pluginRepositories>
|
89 | 100 |
|
| 101 | + <distributionManagement> |
| 102 | + <snapshotRepository> |
| 103 | + <id>ossrh</id> |
| 104 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 105 | + </snapshotRepository> |
| 106 | + <repository> |
| 107 | + <id>ossrh</id> |
| 108 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 109 | + </repository> |
| 110 | + </distributionManagement> |
| 111 | + |
90 | 112 | <modules>
|
91 | 113 | <module>scala</module>
|
92 | 114 | <module>examples</module>
|
93 | 115 | </modules>
|
94 | 116 |
|
95 | 117 | <profiles>
|
96 | 118 | <profile>
|
97 |
| - <id>release-sign-artifacts</id> |
98 |
| - <activation> |
99 |
| - <property> |
100 |
| - <name>performRelease</name> |
101 |
| - <value>true</value> |
102 |
| - </property> |
103 |
| - </activation> |
| 119 | + <id>sign-source-javadoc</id> |
104 | 120 | <build>
|
105 | 121 | <plugins>
|
106 | 122 | <plugin>
|
107 | 123 | <groupId>org.apache.maven.plugins</groupId>
|
108 |
| - <artifactId>maven-release-plugin</artifactId> |
109 |
| - <configuration> |
110 |
| - <tagNameFormat>v@{project.version}</tagNameFormat> |
111 |
| - </configuration> |
| 124 | + <artifactId>maven-source-plugin</artifactId> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <id>attach-sources</id> |
| 128 | + <goals> |
| 129 | + <goal>jar-no-fork</goal> |
| 130 | + </goals> |
| 131 | + </execution> |
| 132 | + </executions> |
| 133 | + </plugin> |
| 134 | + <plugin> |
| 135 | + <groupId>org.apache.maven.plugins</groupId> |
| 136 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 137 | + <executions> |
| 138 | + <execution> |
| 139 | + <id>attach-javadocs</id> |
| 140 | + <goals> |
| 141 | + <goal>jar</goal> |
| 142 | + </goals> |
| 143 | + </execution> |
| 144 | + </executions> |
112 | 145 | </plugin>
|
113 |
| - |
114 | 146 | <plugin>
|
115 | 147 | <groupId>org.apache.maven.plugins</groupId>
|
116 | 148 | <artifactId>maven-gpg-plugin</artifactId>
|
117 |
| - <configuration> |
118 |
| - <useAgent>true</useAgent> |
119 |
| - </configuration> |
120 | 149 | <executions>
|
121 | 150 | <execution>
|
122 |
| - <id>sign-artifacts</id> |
123 | 151 | <phase>verify</phase>
|
124 | 152 | <goals>
|
125 | 153 | <goal>sign</goal>
|
126 | 154 | </goals>
|
127 | 155 | </execution>
|
128 | 156 | </executions>
|
129 | 157 | </plugin>
|
130 |
| - |
131 | 158 | </plugins>
|
132 | 159 | </build>
|
133 | 160 | </profile>
|
134 | 161 |
|
135 |
| - <profile> |
136 |
| - <id>travis-disable-deploy-by-default</id> |
137 |
| - <activation> |
138 |
| - <activeByDefault>false</activeByDefault> |
139 |
| - <property> |
140 |
| - <name>env.TRAVIS</name> |
141 |
| - <value>true</value> |
142 |
| - </property> |
143 |
| - </activation> |
144 |
| - <properties> |
145 |
| - <maven.deploy.skip>true</maven.deploy.skip> |
146 |
| - </properties> |
147 |
| - </profile> |
148 |
| - <profile> |
149 |
| - <id>travis-enable-deploy-if-not-pull-request</id> |
150 |
| - <activation> |
151 |
| - <activeByDefault>false</activeByDefault> |
152 |
| - <property> |
153 |
| - <name>env.TRAVIS_PULL_REQUEST</name> |
154 |
| - <value>false</value> |
155 |
| - </property> |
156 |
| - </activation> |
157 |
| - <properties> |
158 |
| - <maven.deploy.skip>false</maven.deploy.skip> |
159 |
| - </properties> |
160 |
| - </profile> |
161 | 162 | <profile>
|
162 | 163 | <id>coveralls.io</id>
|
163 | 164 | <build>
|
|
382 | 383 | <artifactId>maven-enforcer-plugin</artifactId>
|
383 | 384 | <version>3.0.0-M1</version>
|
384 | 385 | </plugin>
|
| 386 | + <plugin> |
| 387 | + <groupId>org.sonatype.plugins</groupId> |
| 388 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 389 | + <version>1.6.7</version> |
| 390 | + </plugin> |
385 | 391 | </plugins>
|
386 | 392 | </pluginManagement>
|
387 | 393 |
|
|
424 | 430 | </execution>
|
425 | 431 | </executions>
|
426 | 432 | </plugin>
|
| 433 | + <plugin> |
| 434 | + <groupId>org.sonatype.plugins</groupId> |
| 435 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 436 | + <extensions>true</extensions> |
| 437 | + <configuration> |
| 438 | + <serverId>ossrh</serverId> |
| 439 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 440 | + <!--Manually review the non-snapshot artifacts for a while before automating the release --> |
| 441 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 442 | + </configuration> |
| 443 | + </plugin> |
427 | 444 | </plugins>
|
428 | 445 |
|
429 | 446 | <extensions>
|
|
0 commit comments