Skip to content

Commit 2210954

Browse files
committed
Revert "Remove Maven build."
This reverts commit 4d8458f.
1 parent 7caee20 commit 2210954

File tree

1 file changed

+111
-0
lines changed

1 file changed

+111
-0
lines changed

pom.xml

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>io.sf.carte</groupId>
8+
<artifactId>css4j-dist</artifactId>
9+
<version>3.5.0</version>
10+
</parent>
11+
<groupId>io.sf.carte</groupId>
12+
<artifactId>css4j-awt</artifactId>
13+
<packaging>jar</packaging>
14+
<dependencies>
15+
<dependency>
16+
<groupId>io.sf.carte</groupId>
17+
<artifactId>css4j</artifactId>
18+
<version>${project.parent.version}</version>
19+
<type>jar</type>
20+
<scope>compile</scope>
21+
<optional>false</optional>
22+
</dependency>
23+
<dependency>
24+
<groupId>io.sf.carte</groupId>
25+
<artifactId>xml-dtd</artifactId>
26+
<version>${project.parent.version}</version>
27+
<type>jar</type>
28+
<scope>test</scope>
29+
<optional>false</optional>
30+
</dependency>
31+
<dependency>
32+
<groupId>io.sf.carte</groupId>
33+
<artifactId>css4j</artifactId>
34+
<version>${project.parent.version}</version>
35+
<type>test-jar</type>
36+
<scope>test</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>nu.validator</groupId>
40+
<artifactId>htmlparser</artifactId>
41+
<version>1.4.16</version>
42+
<scope>test</scope>
43+
<optional>false</optional>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.slf4j</groupId>
47+
<artifactId>slf4j-api</artifactId>
48+
<version>1.7.30</version>
49+
<scope>test</scope>
50+
<optional>false</optional>
51+
</dependency>
52+
</dependencies>
53+
<!-- Build Settings -->
54+
<build>
55+
<directory>${project.basedir}/build</directory>
56+
<outputDirectory>${project.build.directory}/bin</outputDirectory>
57+
<finalName>${project.artifactId}-${project.version}</finalName>
58+
<testOutputDirectory>${project.build.directory}/testbin</testOutputDirectory>
59+
<sourceDirectory>${project.basedir}/src</sourceDirectory>
60+
<testSourceDirectory>${project.basedir}/junit</testSourceDirectory>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-javadoc-plugin</artifactId>
65+
<configuration>
66+
<links>
67+
<link>https://docs.oracle.com/en/java/javase/11/docs/api/</link>
68+
<link>https://css4j.github.io/api/3/</link>
69+
<link>https://about.validator.nu/htmlparser/apidocs/</link>
70+
</links>
71+
</configuration>
72+
</plugin>
73+
</plugins>
74+
<resources>
75+
<resource>
76+
<directory>${project.build.sourceDirectory}</directory>
77+
<excludes>
78+
<exclude>**/*.java</exclude>
79+
</excludes>
80+
</resource>
81+
<resource>
82+
<directory>${project.basedir}</directory>
83+
<includes>
84+
<include>LICENSE.txt</include>
85+
</includes>
86+
</resource>
87+
</resources>
88+
<testResources>
89+
<testResource>
90+
<directory>${project.basedir}/junit</directory>
91+
<excludes>
92+
<exclude>**/*.java</exclude>
93+
</excludes>
94+
</testResource>
95+
</testResources>
96+
</build>
97+
<scm>
98+
<connection>scm:git:https://github.com/css4j/css4j-awt.git</connection>
99+
<url>https://github.com/css4j/css4j-awt</url>
100+
</scm>
101+
<distributionManagement>
102+
<repository>
103+
<id>github</id>
104+
<name>GitHub css4j Apache Maven Packages</name>
105+
<url>https://maven.pkg.github.com/css4j/css4j-awt</url>
106+
</repository>
107+
</distributionManagement>
108+
<issueManagement>
109+
<url>https://github.com/css4j/css4j-awt/issues</url>
110+
</issueManagement>
111+
</project>

0 commit comments

Comments
 (0)