-<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">
+<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>org.wamblee</groupId>
<artifactId>wamblee-code-style</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>1.2</version>
<packaging>jar</packaging>
<name>wamblee-code-style</name>
+ <description>Code style for wamblee projects</description>
+ <url>http://wamblee.org</url>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
<scm>
- <url>https://wamblee.org/viewvc/code-style</url>
- <connection>scm:svn:https://wamblee.org/svn/public/utils/code-style/trunk</connection>
- <developerConnection>scm:svn:https://wamblee.org/svn/public/utils/code-style/trunk</developerConnection>
+ <url>https://wamblee.org/viewvc/code-style/tags/wamblee-code-style-1.2</url>
+ <connection>scm:svn:https://wamblee.org/svn/public/utils/tags/wamblee-code-style-1.2</connection>
+ <developerConnection>scm:svn:https://wamblee.org/svn/public/utils/tags/wamblee-code-style-1.2</developerConnection>
</scm>
+ <developers>
+ <developer>
+ <email>erik@wamblee.org</email>
+ <name>Erik Brakkee</name>
+ <url>http://brakkee.org</url>
+ </developer>
+ </developers>
+
+ <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-release-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <autoVersionSubmodules>true</autoVersionSubmodules>
+ <goals>javadoc:jar deploy</goals>
+ </configuration>
+ </plugin>
+ <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>
+
+ <distributionManagement>
+ <repository>
+ <id>sonatype-nexus-staging</id>
+ <name>Nexus Release Repository</name>
+ <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+ </repository>
+ </distributionManagement>
- <parent>
- <groupId>org.wamblee</groupId>
- <artifactId>wamblee-utils</artifactId>
- <version>0.2.1</version>
- </parent>
-
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <autoVersionSubmodules>true</autoVersionSubmodules>
- <goals>javadoc:jar deploy</goals>
- <tagBase>https://wamblee.org/svn/public/utils/tags</tagBase>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
</project>
<methodCallChain>false</methodCallChain>
<parameterMethodDeclaration>false</parameterMethodDeclaration>
<ternaryOperator>true</ternaryOperator>
- <variableAssignment>true</variableAssignment>
- <variableIdentifier>true</variableIdentifier>
+ <variableAssignment>false</variableAssignment>
+ <variableIdentifier>false</variableIdentifier>
</alignment>
<backup>
<directory>bak</directory>
<block>1</block>
<braceLeft>0</braceLeft>
<class>1</class>
- <declaration>0</declaration>
+ <declaration>1</declaration>
<footer>1</footer>
<header>0</header>
<interface>1</interface>
<throwsTags>true</throwsTags>
</check>
<fieldsShort>false</fieldsShort>
- <generate>
+ <!-- generate>
<class>23</class>
<constructor>23</constructor>
<field>23</field>
<method>23</method>
- </generate>
+ </generate -->
<parseComments>true</parseComments>
<tags>
<in-line />
<indentation>
<caseFromSwitch>true</caseFromSwitch>
<continuation>
- <block>true</block>
+ <block>false</block>
<operator>false</operator>
</continuation>
<firstColumnComments>false</firstColumnComments>
</parameter>
</always>
<general>
- <beforeOperator>true</beforeOperator>
+ <beforeOperator>false</beforeOperator>
<enable>true</enable>
<lineLength>80</lineLength>
</general>