Revision: | 35204 |
Committed: | Mon Jul 16 15:01:52 2012 UTC (8 years, 8 months ago) by mnour |
Content type: | text/xml |
File size: | 5184 byte(s) |
Log Message: | HTMLDIFF-3 - copy for tag htmldiff-1.01.03-alpha |
# | Content |
---|---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!-- |
3 | Copyright 2010 Hippo (www.onehippo.com) |
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 | |
20 | <name>HtmlDiff</name> |
21 | <description>Html diff</description> |
22 | <groupId>org.hippoecm</groupId> |
23 | <artifactId>htmldiff</artifactId> |
24 | <version>1.01.03-alpha</version> |
25 | |
26 | <issueManagement> |
27 | <system>JIRA</system> |
28 | <url>https://issues.onehippo.com/browse/HTMLDIFF</url> |
29 | </issueManagement> |
30 | |
31 | <scm> |
32 | <connection>scm:svn:http://svn.onehippo.org/repos/hippo/hippo-components/htmldiff/tags/htmldiff-1.01.03-alpha</connection> |
33 | <developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-components/htmldiff/tags/htmldiff-1.01.03-alpha</developerConnection> |
34 | <url>http://svn.onehippo.org/repos/hippo/hippo-components/htmldiff/tags/htmldiff-1.01.03-alpha</url> |
35 | </scm> |
36 | |
37 | <distributionManagement> |
38 | <repository> |
39 | <id>repository.onehippo.org</id> |
40 | <url>ftp://repository.hippocms.org/maven2</url> |
41 | </repository> |
42 | </distributionManagement> |
43 | |
44 | <properties> |
45 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
46 | |
47 | <org.slf4j.version>1.5.8</org.slf4j.version> |
48 | <junit.version>4.4</junit.version> |
49 | <org.eclipse.core.version>3.3.100-v20070530</org.eclipse.core.version> |
50 | <nekohtml.version>1.9.13</nekohtml.version> |
51 | </properties> |
52 | |
53 | <dependencies> |
54 | |
55 | <dependency> |
56 | <groupId>net.sourceforge.nekohtml</groupId> |
57 | <artifactId>nekohtml</artifactId> |
58 | <version>${nekohtml.version}</version> |
59 | <type>jar</type> |
60 | <scope>compile</scope> |
61 | </dependency> |
62 | |
63 | <dependency> |
64 | <groupId>org.eclipse.equinox</groupId> |
65 | <artifactId>common</artifactId> |
66 | <version>3.3.0-v20070426</version> |
67 | </dependency> |
68 | |
69 | <!-- Test --> |
70 | |
71 | <dependency> |
72 | <groupId>org.slf4j</groupId> |
73 | <artifactId>jcl-over-slf4j</artifactId> |
74 | <version>${org.slf4j.version}</version> |
75 | <scope>test</scope> |
76 | </dependency> |
77 | |
78 | <dependency> |
79 | <groupId>org.slf4j</groupId> |
80 | <artifactId>slf4j-log4j12</artifactId> |
81 | <version>${org.slf4j.version}</version> |
82 | <scope>test</scope> |
83 | </dependency> |
84 | |
85 | <dependency> |
86 | <groupId>junit</groupId> |
87 | <artifactId>junit</artifactId> |
88 | <version>${junit.version}</version> |
89 | <scope>test</scope> |
90 | </dependency> |
91 | |
92 | </dependencies> |
93 | |
94 | <organization> |
95 | <name>onehippo</name> |
96 | <url>http://www.onehippo.com</url> |
97 | </organization> |
98 | |
99 | <build> |
100 | <defaultGoal>package</defaultGoal> |
101 | <plugins> |
102 | <plugin> |
103 | <groupId>org.apache.maven.plugins</groupId> |
104 | <artifactId>maven-compiler-plugin</artifactId> |
105 | <configuration> |
106 | <source>1.5</source> |
107 | <target>1.5</target> |
108 | </configuration> |
109 | </plugin> |
110 | <plugin> |
111 | <inherited>true</inherited> |
112 | <groupId>org.apache.maven.plugins</groupId> |
113 | <artifactId>maven-source-plugin</artifactId> |
114 | <executions> |
115 | <execution> |
116 | <id>attach-sources</id> |
117 | <goals> |
118 | <goal>jar</goal> |
119 | </goals> |
120 | </execution> |
121 | </executions> |
122 | </plugin> |
123 | <plugin> |
124 | <groupId>org.apache.maven.plugins</groupId> |
125 | <artifactId>maven-release-plugin</artifactId> |
126 | <version>2.0-beta-8</version> |
127 | </plugin> |
128 | </plugins> |
129 | <extensions> |
130 | <extension> |
131 | <groupId>org.apache.maven.wagon</groupId> |
132 | <artifactId>wagon-ftp</artifactId> |
133 | <version>1.0-beta-6</version> |
134 | </extension> |
135 | </extensions> |
136 | <resources> |
137 | <resource> |
138 | <filtering>false</filtering> |
139 | <directory>${basedir}/src/main/java</directory> |
140 | <includes> |
141 | <include>**/*.xsl</include> |
142 | <include>**/*.properties</include> |
143 | </includes> |
144 | </resource> |
145 | </resources> |
146 | </build> |
147 | |
148 | <profiles> |
149 | <profile> |
150 | <id>jrebel</id> |
151 | <build> |
152 | <plugins> |
153 | <plugin> |
154 | <inherited>true</inherited> |
155 | <groupId>org.zeroturnaround</groupId> |
156 | <artifactId>javarebel-maven-plugin</artifactId> |
157 | <executions> |
158 | <execution> |
159 | <id>generate-rebel-xml</id> |
160 | <phase>process-resources</phase> |
161 | <goals> |
162 | <goal>generate</goal> |
163 | </goals> |
164 | </execution> |
165 | </executions> |
166 | </plugin> |
167 | </plugins> |
168 | </build> |
169 | </profile> |
170 | |
171 | </profiles> |
172 | </project> |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |