Back up and restore poms to prerelease state

git-svn-id: https://zxing.googlecode.com/svn/trunk@1285 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2010-04-06 12:38:26 +00:00
parent 8eb728e9c9
commit be71fb0613
2 changed files with 123 additions and 5 deletions

View file

@ -18,9 +18,9 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<packaging>jar</packaging>
<packaging>pom</packaging>
<name>ZXing Core</name>
<version>1.5</version>
<version>1.6-SNAPSHOT</version>
<description>Core barcode encoding/decoding library</description>
<url>http://code.google.com/p/zxing</url>
<inceptionYear>2007</inceptionYear>
@ -46,9 +46,9 @@
</developer>
</developers>
<scm>
<connection>scm:svn:http://zxing.googlecode.com/svn/tags/core-1.5</connection>
<developerConnection>scm:svn:https://zxing.googlecode.com/svn/tags/core-1.5</developerConnection>
<url>http://zxing.googlecode.com/svn/tags/core-1.5</url>
<connection>scm:svn:http://zxing.googlecode.com/svn/trunk</connection>
<developerConnection>scm:svn:https://zxing.googlecode.com/svn/trunk</developerConnection>
<url>http://zxing.googlecode.com/svn/trunk</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>

118
javase/pom.xml Normal file
View file

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2010 ZXing authors
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.
-->
<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.google.zxing</groupId>
<artifactId>javase</artifactId>
<packaging>pom</packaging>
<name>ZXing Java SE extensions</name>
<version>1.6-SNAPSHOT</version>
<description>Java SE-specific extensions to core ZXing library</description>
<url>http://code.google.com/p/zxing</url>
<inceptionYear>2007</inceptionYear>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/zxing/issues/list</url>
</issueManagement>
<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>
<developers>
<developer>
<name>Daniel Switkin</name>
<email>dswitkin@gmail.com</email>
</developer>
<developer>
<name>Sean Owen</name>
<email>srowen@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:svn:http://zxing.googlecode.com/svn/trunk</connection>
<developerConnection>scm:svn:https://zxing.googlecode.com/svn/trunk</developerConnection>
<url>http://zxing.googlecode.com/svn/trunk</url>
</scm>
<dependencies>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>1.6-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<outputDirectory>build</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>6</source>
<target>6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Nexus Staging</name>
<url>http://oss.sonatype.org/content/groups/google-with-staging/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>http://oss.sonatype.org/content/repositories/google-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>release-sign-artifacts</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>