~ubuntu-branches/debian/squeeze/protobuf/squeeze

« back to all changes in this revision

Viewing changes to java/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2009-06-02 16:19:00 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090602161900-vm176i3ryt35yk91
Tags: 2.0.3-2.2
* Non-maintainer upload.
* Fix FTBFS from -2.1: don't fail when we can't clean up the java build,
  such as when openjdk isn't installed.
* Disable parallel builds, because libtool is made of fail (if binary-arch
  and build-indep run concurrently, we relink a library while it's being
  used; that doesn't work so well).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
4
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
5
  <modelVersion>4.0.0</modelVersion>
6
 
  <!-- This is commented until the parent can be deployed to a repository. -->
7
 
  <!--
8
 
    <parent>
9
 
    <groupId>com</groupId>
 
6
  <!-- remove the reference to the parent until the google repo is synced with central -->
 
7
  <!--<parent>
 
8
    <groupId>com.google</groupId>
10
9
    <artifactId>google</artifactId>
11
 
    <version>1.0-SNAPSHOT</version>
12
 
    </parent>
13
 
  -->
 
10
    <version>1</version>
 
11
  </parent>-->
14
12
  <groupId>com.google.protobuf</groupId>
15
13
  <artifactId>protobuf-java</artifactId>
16
 
  <version>2.0.0beta</version>
 
14
  <version>2.0.3</version>
 
15
  <packaging>jar</packaging>
17
16
  <name>Protocol Buffer Java API</name>
18
 
  <packaging>jar</packaging>
 
17
  <description>
 
18
    Protocol Buffers are a way of encoding structured data in an efficient yet
 
19
    extensible format.
 
20
  </description>
19
21
  <inceptionYear>2008</inceptionYear>
20
22
  <url>http://code.google.com/p/protobuf</url>
 
23
  <licenses>
 
24
    <license>
 
25
      <name>New BSD license</name>
 
26
      <url>http://www.opensource.org/licenses/bsd-license.php</url>
 
27
      <distribution>repo</distribution>
 
28
    </license>
 
29
  </licenses>
 
30
  <scm>
 
31
    <url>http://code.google.com/p/protobuf/source/browse</url>
 
32
    <connection>
 
33
      scm:svn:http://protobuf.googlecode.com/svn/trunk/
 
34
    </connection>
 
35
  </scm>
 
36
  <!-- this is temporarily copied from the parent pom.  remove this section when that is used -->
 
37
  <distributionManagement>
 
38
    <repository>
 
39
      <id>google-maven-repository</id>
 
40
      <name>Google Maven Repository</name>
 
41
      <url>https://google-maven-repository.googlecode.com/svn/trunk/repository/</url>
 
42
    </repository>
 
43
    <snapshotRepository>
 
44
      <id>google-maven-snapshot-repository</id>
 
45
      <name>Google Maven Snapshot Repository</name>
 
46
      <url>https://google-maven-repository.googlecode.com/svn/trunk/snapshot-repository/</url>
 
47
      <uniqueVersion>true</uniqueVersion>
 
48
    </snapshotRepository>
 
49
  </distributionManagement>
21
50
  <dependencies>
22
51
    <dependency>
23
52
      <groupId>junit</groupId>
89
118
                  <arg value="../src/google/protobuf/unittest.proto" />
90
119
                  <arg value="../src/google/protobuf/unittest_import.proto" />
91
120
                  <arg value="../src/google/protobuf/unittest_mset.proto" />
92
 
                  <arg value="src/test/java/com/google/protobuf/multiple_files_test.proto" />
 
121
                  <arg
 
122
                    value="src/test/java/com/google/protobuf/multiple_files_test.proto" />
93
123
                  <arg
94
124
                    value="../src/google/protobuf/unittest_optimize_for.proto" />
 
125
                  <arg
 
126
                    value="../src/google/protobuf/unittest_custom_options.proto" />
95
127
                </exec>
96
128
              </tasks>
97
129
              <testSourceRoot>target/generated-test-sources</testSourceRoot>