~ubuntu-branches/ubuntu/utopic/libjaudiotagger-java/utopic

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2011-04-28 23:52:43 UTC
  • mfrom: (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110428235243-pzalvw6lncis3ukf
Tags: 2.0.3-1
* d/control: Drop Depends on default-jre per Debian Java Policy as its
  a library package.
* d/watch: Fix to directly monitor SVN tags.
* Switch to 3.0 (quilt) format.
* Bump Standards-Version to 3.9.2 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
 
<!--
3
 
/******************************************************************************
4
 
 *                                                                            *
5
 
 * Jaudiotagger is free software; you can redistribute it and/or modify       *
6
 
 * it under the terms of the GNU Lesser General Public License as published   *
7
 
 * by the Free Software Foundation; either version 2.1 of the License, or     *
8
 
 * (at your option) any later version.                                        *
9
 
 *                                                                            *
10
 
 * This program is distributed in the hope that it will be useful,            *
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13
 
 * GNU General Public License for more details.                               *
14
 
 *                                                                            *
15
 
 * You should have received a copy of the GNU General Public License          *
16
 
 * along with this program; if not, write to the Free Software                *
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA   *
18
 
 *                                                                            *
19
 
 ******************************************************************************/
20
 
/* $Id: pom.xml,v 1.7 2009/09/03 09:22:10 paultaylor Exp $ */
21
 
-->
22
 
<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">
23
 
   <modelVersion>4.0.0</modelVersion>
24
 
   <groupId>org.jaudiotagger</groupId>
25
 
   <artifactId>jaudiotagger</artifactId>
26
 
   <version>1.0.8.1</version>
27
 
   <packaging>jar</packaging>
28
 
   <name>jaudiotagger</name>
29
 
   <description>
30
 
    The aim of this project is to provide a world class Java library
31
 
    for editing tag information in audio files.
32
 
    Most existing solutions are not java based inhibiting the use of
33
 
    java applications with digital files.
34
 
   </description>
35
 
   <url>https://jaudiotagger.dev.java.net/</url>
36
 
   <inceptionYear>2005</inceptionYear>
37
 
   <scm>
38
 
      <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:jaudiotagger</connection>
39
 
   </scm>
40
 
   <issueManagement>
41
 
      <url>https://jaudiotagger.dev.java.net/issues</url>
42
 
   </issueManagement>
43
 
   <organization>
44
 
      <name>java.net</name>
45
 
      <url>http://www.java.net/</url>
46
 
   </organization>
47
 
   <mailingLists>
48
 
      <mailingList>
49
 
         <name>Development mailing list</name>
50
 
         <post>dev@jaudiotagger.dev.java.net</post>
51
 
         <archive>https://jaudiotagger.dev.java.net/servlets/SummarizeList?listName=dev</archive>
52
 
      </mailingList>
53
 
      <mailingList>
54
 
         <name>CVS mailing list</name>
55
 
         <post>cvs@jaudiotagger.dev.java.net</post>
56
 
         <archive>https://jaudiotagger.dev.java.net/servlets/SummarizeList?listName=cvs</archive>
57
 
      </mailingList>
58
 
      <mailingList>
59
 
         <name>Issues mailing list</name>
60
 
         <post>issues@jaudiotagger.dev.java.net</post>
61
 
         <archive>https://jaudiotagger.dev.java.net/servlets/SummarizeList?listName=issues</archive>
62
 
      </mailingList>
63
 
   </mailingLists>
64
 
   <developers>
65
 
      <developer>
66
 
         <id>paultaylor</id>
67
 
         <name>Paul Taylor</name>
68
 
         <email>paultaylor@dev.java.net</email>
69
 
         <organization>jthink</organization>
70
 
         <organizationUrl>http://www.jthink.net/jaudiotagger</organizationUrl>
71
 
         <roles>
72
 
            <role>Project Manager</role>
73
 
            <role>Java Developer</role>
74
 
         </roles>
75
 
         <timezone/>
76
 
         <properties/>
77
 
      </developer>
78
 
   </developers>
79
 
   <licenses>
80
 
      <license>
81
 
         <name>LGPL</name>
82
 
         <url>http://www.gnu.org/copyleft/lesser.html</url>
83
 
      </license>
84
 
   </licenses>
85
 
   <dependencies>
86
 
      <dependency>
87
 
         <groupId>junit</groupId>
88
 
         <artifactId>junit</artifactId>
89
 
         <version>3.8.1</version>
90
 
         <scope>test</scope>
91
 
      </dependency>
92
 
   </dependencies>
93
 
   <build>
94
 
      <plugins>
95
 
         <plugin>
96
 
            <groupId>org.apache.maven.plugins</groupId>
97
 
            <artifactId>maven-compiler-plugin</artifactId>
98
 
            <configuration>
99
 
               <encoding>UTF-8</encoding>
100
 
               <source>1.5</source>
101
 
               <target>1.5</target>
102
 
            </configuration>
103
 
         </plugin>
104
 
         <plugin>
105
 
            <groupId>org.apache.maven.plugins</groupId>
106
 
            <artifactId>maven-surefire-plugin</artifactId>
107
 
            <configuration>
108
 
              <argLine>-Dfile.encoding=UTF-8</argLine>
109
 
            </configuration>        
110
 
         </plugin>
111
 
      </plugins>
112
 
      <sourceDirectory>src</sourceDirectory>
113
 
      <testSourceDirectory>srctest</testSourceDirectory>
114
 
   </build>
115
 
   <reporting>
116
 
      <plugins>
117
 
         <plugin>
118
 
            <groupId>org.apache.maven.plugins</groupId>
119
 
            <artifactId>maven-project-info-reports-plugin</artifactId>
120
 
         </plugin>
121
 
         <plugin>
122
 
            <groupId>org.apache.maven.plugins</groupId>
123
 
            <artifactId>maven-surefire-report-plugin</artifactId>
124
 
         </plugin>
125
 
         <!--<plugin>
126
 
            <groupId>org.apache.maven.plugins</groupId>
127
 
            <artifactId>maven-javadoc-plugin</artifactId>
128
 
            <configuration>
129
 
               <overview>${project.build.sourceDirectory}/overview.html</overview>
130
 
               <links>
131
 
                  <link>http://java.sun.com/j2ee/1.4/docs/api</link>
132
 
                  <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
133
 
                  <link>http://www.junit.org/junit/javadoc/</link>
134
 
               </links>
135
 
               <use>false</use>
136
 
            </configuration>
137
 
         </plugin>
138
 
         -->
139
 
         <plugin>
140
 
           <groupId>org.codehaus.mojo</groupId>
141
 
           <artifactId>cobertura-maven-plugin</artifactId>
142
 
           <configuration>
143
 
             <formats>
144
 
               <format>html</format>
145
 
               <format>xml</format>
146
 
             </formats>
147
 
          </configuration>
148
 
         </plugin>                 
149
 
         <plugin>
150
 
            <groupId>org.apache.maven.plugins</groupId>
151
 
            <artifactId>maven-checkstyle-plugin</artifactId>
152
 
         </plugin>
153
 
         <plugin>
154
 
            <groupId>org.apache.maven.plugins</groupId>
155
 
            <artifactId>maven-pmd-plugin</artifactId>
156
 
            <configuration>
157
 
              <targetJdk>1.5</targetJdk>
158
 
            </configuration>
159
 
         </plugin>
160
 
      </plugins>
161
 
   </reporting>
162
 
</project>
 
 
b'\\ No newline at end of file'
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
/******************************************************************************
 
4
 *                                                                            *
 
5
 * Jaudiotagger is free software; you can redistribute it and/or modify       *
 
6
 * it under the terms of the GNU Lesser General Public License as published   *
 
7
 * by the Free Software Foundation; either version 2.1 of the License, or     *
 
8
 * (at your option) any later version.                                        *
 
9
 *                                                                            *
 
10
 * This program is distributed in the hope that it will be useful,            *
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
 
13
 * GNU General Public License for more details.                               *
 
14
 *                                                                            *
 
15
 * You should have received a copy of the GNU General Public License          *
 
16
 * along with this program; if not, write to the Free Software                *
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA   *
 
18
 *                                                                            *
 
19
 ******************************************************************************/
 
20
/* $Id: pom.xml 929 2010-11-17 12:36:46Z paultaylor $ */
 
21
-->
 
22
<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">
 
23
   <modelVersion>4.0.0</modelVersion>
 
24
   <groupId>org</groupId>
 
25
   <artifactId>jaudiotagger</artifactId>
 
26
   <version>2.0.3</version>
 
27
   <packaging>jar</packaging>
 
28
   <name>jaudiotagger</name>
 
29
   <description>
 
30
    The aim of this project is to provide a world class Java library
 
31
    for editing tag information in audio files.
 
32
    Most existing solutions are not java based inhibiting the use of
 
33
    java applications with digital files.
 
34
   </description>
 
35
    <repositories>
 
36
    <repository>
 
37
      <id>maven2-repository.dev.java.net</id>
 
38
      <name>Java.net Repository for Maven</name>
 
39
      <url>http://download.java.net/maven/2/</url>
 
40
    </repository>
 
41
  </repositories>
 
42
   <url>https://jaudiotagger.dev.java.net/</url>
 
43
   <inceptionYear>2005</inceptionYear>
 
44
   <scm>
 
45
      <connection>scm:svn:https://jaudiotagger.dev.java.net/svn/jaudiotagger/trunk</connection>
 
46
      <url>https://jaudiotagger.dev.java.net/svn/jaudiotagger/trunk</url>
 
47
   </scm>
 
48
   <issueManagement>
 
49
      <url>https://jaudiotagger.dev.java.net/issues</url>
 
50
   </issueManagement>
 
51
   <organization>
 
52
      <name>java.net</name>
 
53
      <url>http://www.java.net/</url>
 
54
   </organization>
 
55
   <mailingLists>
 
56
      <mailingList>
 
57
         <name>Development mailing list</name>
 
58
         <post>dev@jaudiotagger.dev.java.net</post>
 
59
         <archive>https://jaudiotagger.dev.java.net/servlets/SummarizeList?listName=dev</archive>
 
60
      </mailingList>
 
61
      <mailingList>
 
62
         <name>Issues mailing list</name>
 
63
         <post>issues@jaudiotagger.dev.java.net</post>
 
64
         <archive>https://jaudiotagger.dev.java.net/servlets/SummarizeList?listName=issues</archive>
 
65
      </mailingList>
 
66
   </mailingLists>
 
67
   <developers>
 
68
      <developer>
 
69
         <id>paultaylor</id>
 
70
         <name>Paul Taylor</name>
 
71
         <email>paultaylor@dev.java.net</email>
 
72
         <organization>jthink</organization>
 
73
         <organizationUrl>http://www.jthink.net/jaudiotagger</organizationUrl>
 
74
         <roles>
 
75
            <role>Project Manager</role>
 
76
            <role>Java Developer</role>
 
77
         </roles>
 
78
         <timezone/>
 
79
         <properties/>
 
80
      </developer>
 
81
   </developers>
 
82
   <licenses>
 
83
      <license>
 
84
         <name>LGPL</name>
 
85
         <url>http://www.gnu.org/copyleft/lesser.html</url>
 
86
      </license>
 
87
   </licenses>
 
88
   <dependencies>
 
89
      <dependency>
 
90
         <groupId>junit</groupId>
 
91
         <artifactId>junit</artifactId>
 
92
         <version>3.8.1</version>
 
93
         <scope>test</scope>
 
94
      </dependency>
 
95
   </dependencies>
 
96
   <distributionManagement>
 
97
    <site>
 
98
      <id>jthink</id>
 
99
      <url>scp://www.jthink.net//home/jthink/jakarta-tomcat/webapps/jaudiotagger/maven</url>
 
100
    </site>
 
101
    <repository>
 
102
      <uniqueVersion>false</uniqueVersion>
 
103
      <id>java.net-maven2-repository</id>
 
104
      <url>java-net:/maven2-repository/trunk/repository/</url>
 
105
    </repository>
 
106
  </distributionManagement>
 
107
   <build>
 
108
      <extensions>
 
109
         <extension>
 
110
            <groupId>org.jvnet.wagon-svn</groupId>
 
111
            <artifactId>wagon-svn</artifactId>
 
112
            <version>1.8</version>
 
113
         </extension>
 
114
      </extensions>
 
115
      <plugins>
 
116
         <plugin>
 
117
            <groupId>org.apache.maven.plugins</groupId>
 
118
            <artifactId>maven-compiler-plugin</artifactId>
 
119
            <configuration>
 
120
               <encoding>UTF-8</encoding>
 
121
               <source>1.5</source>
 
122
               <target>1.5</target>
 
123
            </configuration>
 
124
         </plugin>
 
125
         <plugin>
 
126
            <groupId>org.apache.maven.plugins</groupId>
 
127
            <artifactId>maven-surefire-plugin</artifactId>
 
128
            <configuration>
 
129
              <argLine>-Dfile.encoding=UTF-8</argLine>
 
130
            </configuration>        
 
131
         </plugin>
 
132
 
 
133
         <plugin>
 
134
           <groupId>org.apache.maven.plugins</groupId>
 
135
           <artifactId>maven-source-plugin</artifactId>
 
136
           <executions>
 
137
             <execution>
 
138
             <id>attach-sources</id>
 
139
             <goals>
 
140
               <goal>jar</goal>
 
141
             </goals>
 
142
             </execution>
 
143
           </executions>
 
144
         </plugin>              
 
145
         <plugin>
 
146
           <groupId>org.apache.maven.plugins</groupId>
 
147
           <artifactId>maven-javadoc-plugin</artifactId>
 
148
           <executions>
 
149
             <execution>
 
150
             <id>attach-javadocs</id>
 
151
             <goals>
 
152
                <goal>jar</goal>
 
153
             </goals>
 
154
             </execution>
 
155
           </executions>
 
156
         </plugin>
 
157
      </plugins>
 
158
      <sourceDirectory>src</sourceDirectory>
 
159
      <testSourceDirectory>srctest</testSourceDirectory>
 
160
   </build>
 
161
   <reporting>
 
162
      <plugins>
 
163
         <plugin>
 
164
            <groupId>org.apache.maven.plugins</groupId>
 
165
            <artifactId>maven-javadoc-plugin</artifactId>
 
166
            <version>2.6.1</version>
 
167
            <configuration>
 
168
               <show>private</show>
 
169
               <use>false</use>
 
170
            </configuration>
 
171
         </plugin>
 
172
         <plugin>
 
173
            <groupId>org.apache.maven.plugins</groupId>
 
174
            <artifactId>maven-project-info-reports-plugin</artifactId>
 
175
         </plugin>
 
176
         <plugin>
 
177
            <groupId>org.apache.maven.plugins</groupId>
 
178
            <artifactId>maven-surefire-report-plugin</artifactId>
 
179
         </plugin>                  
 
180
         <plugin>
 
181
           <groupId>org.codehaus.mojo</groupId>
 
182
           <artifactId>cobertura-maven-plugin</artifactId>
 
183
           <configuration>
 
184
             <formats>
 
185
               <format>html</format>
 
186
               <format>xml</format>
 
187
             </formats>
 
188
          </configuration>
 
189
         </plugin>
 
190
         <plugin>
 
191
            <groupId>org.apache.maven.plugins</groupId>
 
192
            <artifactId>maven-pmd-plugin</artifactId>
 
193
            <configuration>
 
194
              <targetJdk>1.5</targetJdk>
 
195
            </configuration>
 
196
         </plugin>
 
197
      </plugins>
 
198
   </reporting>
 
199
</project>