~ubuntu-branches/ubuntu/raring/apgdiff/raring

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2010-10-11 09:08:18 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20101011090818-sdw8yfemrnxo328k
Tags: 2.2.2-1
* New upstream version.
* Using changelog included in zipfile, thanks Miroslav for providing this.
* Update manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="UTF-8"?>
2
2
<project>
3
3
    <modelVersion>4.0.0</modelVersion>
4
 
    <groupId>cz.startnet.utils.pgdiff</groupId>
 
4
 
 
5
    <groupId>cz.startnet</groupId>
5
6
    <artifactId>apgdiff</artifactId>
6
7
    <name>Another PostgreSQL Diff Tool</name>
7
 
    <version>1.4</version>
 
8
    <version>2.2.2</version>
8
9
    <description>Simple PostgreSQL diff tool that is useful for schema upgrades. The tool compares two schema dump files and creates output file that is (after some hand-made modifications) suitable for upgrade of old schema.</description>
9
 
    <url>http://apgdiff.sourceforge.net</url>
 
10
 
 
11
    <url>http://apgdiff.startnet.biz/</url>
 
12
 
10
13
    <issueManagement>
11
14
        <system>SouceForge Tracker</system>
12
15
        <url>http://sourceforge.net/tracker/?group_id=163508</url>
13
16
    </issueManagement>
 
17
 
14
18
    <inceptionYear>2006</inceptionYear>
 
19
 
15
20
    <developers>
16
21
        <developer>
17
22
            <id>fordfrog</id>
18
23
            <name>Miroslav Šulc</name>
19
24
            <email>miroslav.sulc@startnet.cz</email>
20
25
            <organization>StartNet s.r.o.</organization>
21
 
            <organizationUrl>http://www.startnet.cz</organizationUrl>
 
26
            <organizationUrl>http://www.startnet.biz/</organizationUrl>
22
27
            <roles>
23
28
                <role>main developer</role>
24
29
            </roles>
25
 
            <timezone>+2</timezone>
 
30
            <timezone>+1</timezone>
26
31
        </developer>
27
32
    </developers>
 
33
 
28
34
    <contributors>
29
35
        <contributor>
30
36
            <name>Matthieu Patou</name>
51
57
            </roles>
52
58
        </contributor>
53
59
    </contributors>
 
60
 
54
61
    <licenses>
55
62
        <license>
56
63
            <name>MIT</name>
59
66
            <comments>A business-friendly OSS license</comments>
60
67
        </license>
61
68
    </licenses>
 
69
 
62
70
    <scm>
63
 
        <connection>scm:hg:ssh://fordfrog@apgdiff.hg.sourceforge.net/hgroot/apgdiff/apgdiff</connection>
 
71
        <connection>scm:hg:http://apgdiff.hg.sourceforge.net:8000/hgroot/apgdiff/apgdiff</connection>
64
72
        <developerConnection>scm:hg:ssh://apgdiff.hg.sourceforge.net/hgroot/apgdiff/apgdiff</developerConnection>
65
73
        <url>http://apgdiff.hg.sourceforge.net/hgweb/apgdiff/</url>
66
74
    </scm>
 
75
    
67
76
    <organization>
68
77
        <name>StartNet s.r.o.</name>
69
 
        <url>http://www.startnet.cz</url>
 
78
        <url>http://www.startnet.biz</url>
70
79
    </organization>
 
80
    
71
81
    <build>
72
82
        <plugins>
73
83
            <plugin>
74
84
                <artifactId>maven-compiler-plugin</artifactId>
75
85
                <configuration>
76
 
                    <source>1.5</source>
77
 
                    <target>1.5</target>
 
86
                    <source>1.6</source>
 
87
                    <target>1.6</target>
78
88
                </configuration>
79
89
            </plugin>
80
90
            <plugin>
96
106
                    </archive>
97
107
                </configuration>
98
108
            </plugin>
 
109
            <plugin>
 
110
                <groupId>org.apache.maven.plugins</groupId>
 
111
                <artifactId>maven-source-plugin</artifactId>
 
112
                <executions>
 
113
                    <execution>
 
114
                        <id>attach-sources</id>
 
115
                        <phase>verify</phase>
 
116
                        <goals>
 
117
                            <goal>jar</goal>
 
118
                        </goals>
 
119
                    </execution>
 
120
                </executions>
 
121
            </plugin>
 
122
            <plugin>
 
123
                <groupId>org.apache.maven.plugins</groupId>
 
124
                <artifactId>maven-javadoc-plugin</artifactId>
 
125
                <executions>
 
126
                    <execution>
 
127
                        <id>attach-javadoc</id>
 
128
                        <phase>verify</phase>
 
129
                        <goals>
 
130
                            <goal>jar</goal>
 
131
                        </goals>
 
132
                    </execution>
 
133
                </executions>
 
134
                <configuration>
 
135
                    <show>private</show>
 
136
                </configuration>
 
137
            </plugin>
 
138
            <plugin>
 
139
                <groupId>org.apache.maven.plugins</groupId>
 
140
                <artifactId>maven-assembly-plugin</artifactId>
 
141
                <configuration>
 
142
                    <descriptors>
 
143
                        <descriptor>${basedir}/src/main/assembly/bin.xml</descriptor>
 
144
                        <descriptor>${basedir}/src/main/assembly/src.xml</descriptor>
 
145
                    </descriptors>
 
146
                </configuration>
 
147
            </plugin>
99
148
        </plugins>
100
149
    </build>
 
150
 
101
151
    <pluginRepositories>
102
152
        <pluginRepository>
103
153
            <releases />
138
188
            <url>http://stat-scm.sourceforge.net/maven2-snapshots</url>
139
189
        </pluginRepository>
140
190
    </pluginRepositories>
 
191
 
141
192
    <dependencies>
142
193
        <dependency>
143
194
            <groupId>junit</groupId>
144
195
            <artifactId>junit</artifactId>
145
 
            <version>4.7</version>
 
196
            <version>4.8.1</version>
146
197
            <scope>test</scope>
147
198
        </dependency>
148
199
        <dependency>
152
203
            <scope>test</scope>
153
204
        </dependency>
154
205
    </dependencies>
 
206
 
155
207
    <reporting>
156
208
        <plugins>
157
209
            <plugin>
162
214
                <configuration>
163
215
                    <minmemory>128m</minmemory>
164
216
                    <maxmemory>512</maxmemory>
165
 
                    <source>1.5</source>
166
 
                    <target>1.5</target>
 
217
                    <source>1.6</source>
 
218
                    <target>1.6</target>
167
219
                    <tags>
168
220
                        <tag>
169
221
                            <name>todo</name>
181
233
                <artifactId>maven-pmd-plugin</artifactId>
182
234
                <configuration>
183
235
                    <sourceEncoding>utf-8</sourceEncoding>
184
 
                    <targetJdk>1.5</targetJdk>
 
236
                    <targetJdk>1.6</targetJdk>
185
237
                </configuration>
186
238
            </plugin>
187
239
            <plugin>
205
257
            </plugin>
206
258
        </plugins>
207
259
    </reporting>
208
 
    <distributionManagement>
209
 
        <site>
210
 
            <id>website</id>
211
 
            <name>SourceForge.Net</name>
212
 
            <url>scp://shell.sourceforge.net/home/groups/a/ap/apgdiff/htdocs/</url>
213
 
        </site>
214
 
    </distributionManagement>
 
260
    
215
261
</project>