112 lines
4.2 KiB
Plaintext
112 lines
4.2 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.jgoodies</groupId>
|
||
|
<artifactId>looks</artifactId>
|
||
|
<version>2.2.2</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>JGoodies Looks</name>
|
||
|
<url>https://looks.dev.java.net/</url>
|
||
|
<description>The JGoodies Looks make your Swing applications and
|
||
|
applets look better. They have been optimized for readability,
|
||
|
precise micro-design and usability. And they simplify
|
||
|
the multi-platform support by using similar widget dimensions.
|
||
|
In addition, many people have reviewed them as elegant.
|
||
|
</description>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>The BSD License</name>
|
||
|
<url>http://www.opensource.org/licenses/bsd-license.html</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>Karsten</id>
|
||
|
<name>Karsten Lentzsch</name>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
|
||
|
<!--project.build.sourceEncoding>UTF-8</project.build.sourceEncoding-->
|
||
|
<java.compiler.source>1.4</java.compiler.source>
|
||
|
<java.compiler.target>1.4</java.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<scm>
|
||
|
<connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:looks</connection>
|
||
|
<tag>head</tag>
|
||
|
<url>https://looks.dev.java.net/source/browse/looks/</url>
|
||
|
</scm>
|
||
|
<dependencies>
|
||
|
<!-- This library doesn't depend on any other library. -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>mvnartifacts-sf.net</id>
|
||
|
<url>sftp://web.sourceforge.net/home/groups/m/mv/mvnartifacts/htdocs/m2-repo</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
<build>
|
||
|
<directory>${basedir}/build</directory>
|
||
|
<sourceDirectory>${basedir}/src/core</sourceDirectory>
|
||
|
<testSourceDirectory>${basedir}/src/test</testSourceDirectory>
|
||
|
<outputDirectory>${basedir}/build/classes</outputDirectory>
|
||
|
<testOutputDirectory>${basedir}/build/test-classes</testOutputDirectory>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>.</directory>
|
||
|
<includes>
|
||
|
<include>LICENSE.txt</include>
|
||
|
<include>README.html</include>
|
||
|
<include>RELEASE-NOTES.txt</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<targetPath>META-INF/services</targetPath>
|
||
|
<filtering>false</filtering>
|
||
|
<directory>${basedir}/src</directory>
|
||
|
<includes>
|
||
|
<include>javax.swing.LookAndFeel</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>${basedir}/src/core</directory>
|
||
|
<includes>
|
||
|
<include>**/*.png</include>
|
||
|
<include>**/*.gif</include>
|
||
|
<include>**/*.jpg</include>
|
||
|
</includes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>${java.compiler.source}</source>
|
||
|
<target>${java.compiler.target}</target>
|
||
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||
|
<debug>true</debug>
|
||
|
<optimize>false</optimize>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<includes>
|
||
|
<include>**/*Test.java</include>
|
||
|
</includes>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|