Skip to content

Commit e145e4e

Browse files
committed
Add pom.xml to upload nbm to the Maven Central
1 parent 7f41e99 commit e145e4e

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

pom.xml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.junichi11.netbeans.modules</groupId>
5+
<artifactId>netbeans-cakephp3</artifactId>
6+
<!-- change the version of build.xml -->
7+
<version>0.8.0</version>
8+
<packaging>nbm</packaging>
9+
<name>NetBeans CakePHP3 Framework</name>
10+
<url>https://github.com/junichi11/</url>
11+
<description>This plugin provides support for CakePHP3.</description>
12+
<developers>
13+
<developer>
14+
<id>junichi11</id>
15+
<name>Junichi Yamamoto</name>
16+
<url>https://github.com/junichi11</url>
17+
</developer>
18+
</developers>
19+
<scm>
20+
<connection>scm:git:https://github.com/junichi11/cakephp3-netbeans.git</connection>
21+
<developerConnection>scm:git:https://github.com/junichi11/cakephp3-netbeans.git</developerConnection>
22+
<url>https://github.com/junichi11/cakephp3-netbeans</url>
23+
<tag>HEAD</tag>
24+
</scm>
25+
<licenses>
26+
<license>
27+
<name>Apache License, Version 2.0</name>
28+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
29+
</license>
30+
</licenses>
31+
<distributionManagement>
32+
<snapshotRepository>
33+
<id>ossrh</id>
34+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
35+
</snapshotRepository>
36+
<repository>
37+
<id>ossrh</id>
38+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
39+
</repository>
40+
</distributionManagement>
41+
<build>
42+
<plugins>
43+
<plugin>
44+
<groupId>org.apache.maven.plugins</groupId>
45+
<artifactId>maven-gpg-plugin</artifactId>
46+
<version>1.6</version>
47+
<executions>
48+
<execution>
49+
<id>sign-artifacts</id>
50+
<phase>verify</phase>
51+
<goals>
52+
<goal>sign</goal>
53+
</goals>
54+
</execution>
55+
</executions>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
<dependencies>
60+
</dependencies>
61+
</project>
62+

0 commit comments

Comments
 (0)