Korean translation from Chang Hyun Park
[zxing.git] / javase / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (C) 2010 ZXing authors
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16  -->
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">
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>com.google.zxing</groupId>
20   <artifactId>javase</artifactId>
21   <packaging>jar</packaging>
22   <name>ZXing Java SE extensions</name>
23   <version>1.6-SNAPSHOT</version>
24   <description>Java SE-specific extensions to core ZXing library</description>
25   <url>http://code.google.com/p/zxing</url>
26   <inceptionYear>2007</inceptionYear>
27   <issueManagement>
28     <system>Google Code</system>
29     <url>http://code.google.com/p/zxing/issues/list</url>
30   </issueManagement>
31   <licenses>
32     <license>
33       <name>The Apache Software License, Version 2.0</name>
34       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35       <distribution>repo</distribution>
36     </license>
37   </licenses>
38   <developers>
39     <developer>
40       <name>Daniel Switkin</name>
41       <email>dswitkin@gmail.com</email>
42     </developer>
43     <developer>
44       <name>Sean Owen</name>
45       <email>srowen@gmail.com</email>
46     </developer>
47   </developers>
48   <scm>
49     <connection>scm:svn:http://zxing.googlecode.com/svn/trunk</connection>
50     <developerConnection>scm:svn:https://zxing.googlecode.com/svn/trunk</developerConnection>
51     <url>http://zxing.googlecode.com/svn/trunk</url>
52   </scm>
53   <dependencies>
54     <dependency>
55       <groupId>com.google.zxing</groupId>
56       <artifactId>core</artifactId>
57       <version>1.6-SNAPSHOT</version>
58     </dependency>
59   </dependencies>
60   <build>
61     <sourceDirectory>src</sourceDirectory>
62     <outputDirectory>build</outputDirectory>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.maven.plugins</groupId>
66         <artifactId>maven-compiler-plugin</artifactId>
67         <configuration>
68           <source>6</source>
69           <target>6</target>
70         </configuration>
71       </plugin>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-release-plugin</artifactId>
75       </plugin>
76     </plugins>
77   </build>
78   <distributionManagement>
79     <repository>
80       <id>sonatype-nexus-staging</id>
81       <name>Sonatype Nexus Staging</name>
82       <url>http://oss.sonatype.org/content/groups/google-with-staging/</url>
83     </repository>
84     <snapshotRepository>
85       <id>sonatype-nexus-snapshots</id>
86       <name>Sonatype Nexus Snapshots</name>
87       <url>http://oss.sonatype.org/content/repositories/google-snapshots/</url>
88     </snapshotRepository>
89   </distributionManagement>
90   <profiles>
91     <profile>
92       <id>release-sign-artifacts</id>
93       <activation>
94         <property>
95           <name>performRelease</name>
96           <value>true</value>
97         </property>
98       </activation>
99       <build>
100         <plugins>
101           <plugin>
102             <groupId>org.apache.maven.plugins</groupId>
103             <artifactId>maven-gpg-plugin</artifactId>
104             <executions>
105               <execution>
106                 <id>sign-artifacts</id>
107                 <phase>verify</phase>
108                 <goals>
109                   <goal>sign</goal>
110                 </goals>
111               </execution>
112             </executions>
113           </plugin>
114         </plugins>
115       </build>
116     </profile>
117   </profiles>
118 </project>