~ubuntu-branches/ubuntu/vivid/apgdiff/vivid

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2010-10-02 19:35:17 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101002193517-9wesve8sksxcktkc
Tags: 2.2-1
* New upstream version.
* Update homepage location.
* Finally enable test suite, yay!

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</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>
99
138
        </plugins>
100
139
    </build>
 
140
 
101
141
    <pluginRepositories>
102
142
        <pluginRepository>
103
143
            <releases />
138
178
            <url>http://stat-scm.sourceforge.net/maven2-snapshots</url>
139
179
        </pluginRepository>
140
180
    </pluginRepositories>
 
181
 
141
182
    <dependencies>
142
183
        <dependency>
143
184
            <groupId>junit</groupId>
144
185
            <artifactId>junit</artifactId>
145
 
            <version>4.7</version>
 
186
            <version>4.8.1</version>
146
187
            <scope>test</scope>
147
188
        </dependency>
148
189
        <dependency>
152
193
            <scope>test</scope>
153
194
        </dependency>
154
195
    </dependencies>
 
196
 
155
197
    <reporting>
156
198
        <plugins>
157
199
            <plugin>
162
204
                <configuration>
163
205
                    <minmemory>128m</minmemory>
164
206
                    <maxmemory>512</maxmemory>
165
 
                    <source>1.5</source>
166
 
                    <target>1.5</target>
 
207
                    <source>1.6</source>
 
208
                    <target>1.6</target>
167
209
                    <tags>
168
210
                        <tag>
169
211
                            <name>todo</name>
181
223
                <artifactId>maven-pmd-plugin</artifactId>
182
224
                <configuration>
183
225
                    <sourceEncoding>utf-8</sourceEncoding>
184
 
                    <targetJdk>1.5</targetJdk>
 
226
                    <targetJdk>1.6</targetJdk>
185
227
                </configuration>
186
228
            </plugin>
187
229
            <plugin>
205
247
            </plugin>
206
248
        </plugins>
207
249
    </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>
 
250
    
215
251
</project>