phloc-css-jdk5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.phloc</groupId> <artifactId>phloc-css-jdk5</artifactId> <version>3.7.7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2006-2014 phloc systems http://www.phloc.com office[at]phloc[dot]com Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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"> <parent> <groupId>com.phloc</groupId> <artifactId>parent-pom</artifactId> <version>23.1</version> <relativePath>../phloc-parent-pom/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>phloc-css-jdk5</artifactId> <version>3.7.7</version> <packaging>bundle</packaging> <name>phloc-css-jdk5</name> <description>phloc CSS parser an other components</description> <url>http://repo.phloc.com/apidocs/phloc-css-jdk5/${project.version}</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://code.google.com/p/phloc-css/source/browse/tags/phloc-css-jdk5-3.7.7</url> <connection>scm:svn:http://phloc-css.googlecode.com/svn/tags/phloc-css-jdk5-3.7.7</connection> <developerConnection>scm:svn:https://phloc-css.googlecode.com/svn/tags/phloc-css-jdk5-3.7.7</developerConnection> </scm> <organization> <name>phloc systems</name> <url>http://www.phloc.com</url> </organization> <developers> <developer> <id>philip</id> <name>Philip Helger</name> <email>ph(at)phloc.com</email> <url>http://www.phloc.com</url> <organization>phloc systems</organization> </developer> <developer> <id>boris</id> <name>Boris Gregorcic</name> <email>bg(at)phloc.com</email> <url>http://www.phloc.com</url> <organization>phloc systems</organization> </developer> </developers> <dependencies> <dependency> <groupId>com.phloc</groupId> <artifactId>phloc-commons-jdk5</artifactId> <version>4.3.3</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <!--Explicitly required for Java 1.5!--> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <!-- Using our customized plugin that uses JavaCC 6.1.2 --> <groupId>com.phloc.maven</groupId> <artifactId>phlocjavacc-maven-plugin</artifactId> <version>2.7.6</version> <executions> <execution> <goals> <goal>jjtree-javacc</goal> </goals> </execution> </executions> <configuration> <jdkVersion>1.5</jdkVersion> <javadocFriendlyComments>true</javadocFriendlyComments> <userCharStream>true</userCharStream> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package>com.phloc.css.*</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes> <exclude>src/test/resources/testfiles/css21/good/themes*</exclude> <exclude>src/test/resources/testfiles/css30/bad/w3c/**</exclude> <exclude>src/test/resources/testfiles/css30/bad_but_succeeding/w3c/**</exclude> <exclude>src/test/resources/testfiles/css30/good/test-charset*</exclude> <exclude>src/test/resources/testfiles/css30/good/w3c/**</exclude> <exclude>src/test/resources/testfiles/css30/good_but_failing/w3c/**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>