Prep for 1.0
This commit is contained in:
parent
da1af4f1c2
commit
f39ece6475
3 changed files with 64 additions and 3 deletions
|
@ -7,4 +7,15 @@
|
|||
<goal>site</goal>
|
||||
</goals>
|
||||
</action>
|
||||
<action>
|
||||
<actionName>CUSTOM-release</actionName>
|
||||
<displayName>release</displayName>
|
||||
<goals>
|
||||
<goal>clean</goal>
|
||||
<goal>release:perform</goal>
|
||||
</goals>
|
||||
<properties>
|
||||
<gpg.passphrase>"I come not to praise Caesar"</gpg.passphrase>
|
||||
</properties>
|
||||
</action>
|
||||
</actions>
|
||||
|
|
39
pom.xml
39
pom.xml
|
@ -2,12 +2,17 @@
|
|||
<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/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.sun.syndication</groupId>
|
||||
<groupId>org.rometools</groupId>
|
||||
<artifactId>rome-modules</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<version>1.0</version>
|
||||
<name>rome-modules</name>
|
||||
<url>http://rome.java.net</url>
|
||||
<url>http://www.rometools.org</url>
|
||||
<scm>
|
||||
<connection>scm:svn:http://rometools.jira.com/svn/MODULES/trunk</connection>
|
||||
<developerConnection>scm:svn:https://rometools.jira.com/svn/MODULES/trunk</developerConnection>
|
||||
<url>https://rometools.jira.com/source/browse/MODULES</url>
|
||||
</scm>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>maven2-repository.dev.java.net</id>
|
||||
|
@ -86,4 +91,32 @@
|
|||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>performRelease</name>
|
||||
<value>true</value>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
17
src/main/etc/header.txt
Normal file
17
src/main/etc/header.txt
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
* Copyright (C) The ROME Team ${year}
|
||||
*
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
*/
|
Loading…
Reference in a new issue