组织ID: |
com.helger |
项目ID: |
ph-css |
版本: |
6.1.1 |
最后修改时间: |
2018-07-26 20:07:12 |
包类型: |
jar |
标题: |
ph-css |
描述: |
Java CSS 3 parser and builder |
相关URL: |
https://github.com/phax/ph-css/ph-css |
大小: |
497.58KB |
|
Maven引入代码: |
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-css</artifactId>
<version>6.1.1</version>
</dependency>
|
Gradle引入代码: |
com.helger:ph-css:6.1.1
|
下载Jar包: |
|
POM文件内容: |
<?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>
<parent>
<groupId>com.helger</groupId>
<artifactId>ph-css-parent-pom</artifactId>
<version>6.1.1</version>
</parent>
<artifactId>ph-css</artifactId>
<packaging>bundle</packaging>
<name>ph-css</name>
<description>Java CSS 3 parser and builder</description>
<url>https://github.com/phax/ph-css/ph-css</url>
<inceptionYear>2014</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Philip Helger</name>
<url>http://www.helger.com</url>
</organization>
<developers>
<developer>
<id>philip</id>
<name>Philip Helger</name>
<email>ph(at)helger.com</email>
<url>http://www.helger.com</url>
</developer>
</developers>
<properties>
<argLine>-Xmx1024m</argLine>
</properties>
<dependencies>
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-commons</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-xml</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<id>central.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<configuration>
<bundledSignatures>
<bundledSignature>jdk-unsafe</bundledSignature>
<bundledSignature>jdk-deprecated</bundledSignature>
<bundledSignature>jdk-reflection</bundledSignature>
<bundledSignature>jdk-internal</bundledSignature>
<bundledSignature>jdk-non-portable</bundledSignature>
</bundledSignatures>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-javacc-maven-plugin</artifactId>
<version>4.0.3</version>
<executions>
<execution>
<goals>
<goal>jjtree-javacc</goal>
</goals>
</execution>
</executions>
<configuration>
<jdkVersion>1.8</jdkVersion>
<javadocFriendlyComments>true</javadocFriendlyComments>
<outputEncoding>utf-8</outputEncoding>
<javaTemplateType>modern</javaTemplateType>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Automatic-Module-Name>com.helger.css</Automatic-Module-Name>
<Export-Package>com.helger.css.*</Export-Package>
<Import-Package>!javax.annotation.*,*</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/test/resources/testfiles/css30/bad/**</exclude>
<exclude>src/test/resources/testfiles/css30/bad_but_succeeding/w3c/**</exclude>
<exclude>src/test/resources/testfiles/css30/good/issue*</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>
<exclude>**/NOTICE</exclude>
<exclude>**/LICENSE</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
LICENSE
META-INF/buildinfo.xml
META-INF/maven/com.helger/ph-css/pom.properties
META-INF/maven/com.helger/ph-css/pom.xml
NOTICE
changelog.xml
com.helger.css.CCSS.class
com.helger.css.CSSFilenameHelper.class
com.helger.css.CSSSourceArea.class
com.helger.css.CSSSourceLocation.class
com.helger.css.ECSSMetaUnit.class
com.helger.css.ECSSSpecification.class
com.helger.css.ECSSSpecificationStatus.class
com.helger.css.ECSSUnit.class
com.helger.css.ECSSVendorPrefix.class
com.helger.css.ECSSVersion.class
com.helger.css.ICSSSourceLocationAware.class
com.helger.css.ICSSVersionAware.class
com.helger.css.ICSSWriteable.class
com.helger.css.ICSSWriterSettings.class
com.helger.css.annotation.DeprecatedInCSS21.class
com.helger.css.annotation.DeprecatedInCSS30.class
com.helger.css.decl.AbstractHasTopLevelRules.class
com.helger.css.decl.CSSDeclaration.class
com.helger.css.decl.CSSDeclarationContainer.class
com.helger.css.decl.CSSDeclarationList.class
com.helger.css.decl.CSSExpression.class
com.helger.css.decl.CSSExpressionMemberFunction.class
com.helger.css.decl.CSSExpressionMemberLineNames.class
com.helger.css.decl.CSSExpressionMemberMath.class
com.helger.css.decl.CSSExpressionMemberMathProduct.class
com.helger.css.decl.CSSExpressionMemberMathUnitProduct.class
com.helger.css.decl.CSSExpressionMemberMathUnitSimple.class
com.helger.css.decl.CSSExpressionMemberTermSimple.class
com.helger.css.decl.CSSExpressionMemberTermURI.class
com.helger.css.decl.CSSExpressionTermOptimizer.class
com.helger.css.decl.CSSFontFaceRule.class
com.helger.css.decl.CSSHSL.class
com.helger.css.decl.CSSHSLA.class
com.helger.css.decl.CSSImportRule.class
com.helger.css.decl.CSSKeyframesBlock.class
com.helger.css.decl.CSSKeyframesRule.class
com.helger.css.decl.CSSMediaExpression.class
com.helger.css.decl.CSSMediaQuery$EModifier.class
com.helger.css.decl.CSSMediaQuery.class
com.helger.css.decl.CSSMediaRule.class
com.helger.css.decl.CSSNamespaceRule.class
com.helger.css.decl.CSSPageMarginBlock.class
com.helger.css.decl.CSSPageRule.class
com.helger.css.decl.CSSRGB.class
com.helger.css.decl.CSSRGBA.class
com.helger.css.decl.CSSRect.class
com.helger.css.decl.CSSSelector.class
com.helger.css.decl.CSSSelectorAttribute.class
com.helger.css.decl.CSSSelectorMemberFunctionLike.class
com.helger.css.decl.CSSSelectorMemberNot.class
com.helger.css.decl.CSSSelectorSimpleMember.class
com.helger.css.decl.CSSStyleRule.class
com.helger.css.decl.CSSSupportsConditionDeclaration.class
com.helger.css.decl.CSSSupportsConditionNegation.class
com.helger.css.decl.CSSSupportsConditionNested.class
com.helger.css.decl.CSSSupportsRule.class
com.helger.css.decl.CSSURI.class
com.helger.css.decl.CSSUnknownRule.class
com.helger.css.decl.CSSViewportRule.class
com.helger.css.decl.CSSWritableList.class
com.helger.css.decl.CascadingStyleSheet.class
com.helger.css.decl.ECSSAttributeOperator.class
com.helger.css.decl.ECSSExpressionOperator.class
com.helger.css.decl.ECSSMathOperator.class
com.helger.css.decl.ECSSSelectorCombinator.class
com.helger.css.decl.ECSSSupportsConditionOperator.class
com.helger.css.decl.ICSSColor.class
com.helger.css.decl.ICSSExpressionMathMember.class
com.helger.css.decl.ICSSExpressionMember.class
com.helger.css.decl.ICSSPageRuleMember.class
com.helger.css.decl.ICSSSelectorMember.class
com.helger.css.decl.ICSSSupportsConditionMember.class
com.helger.css.decl.ICSSTopLevelRule.class
com.helger.css.decl.IHasCSSDeclarations.class
com.helger.css.decl.shorthand.CSSPropertyWithDefaultValue.class
com.helger.css.decl.shorthand.CSSShortHandDescriptor.class
com.helger.css.decl.shorthand.CSSShortHandDescriptorWithAlignment.class
com.helger.css.decl.shorthand.CSSShortHandRegistry.class
com.helger.css.decl.visit.AbstractModifyingCSSUrlVisitor.class
com.helger.css.decl.visit.CSSVisitor.class
com.helger.css.decl.visit.CSSVisitorForUrl.class
com.helger.css.decl.visit.DefaultCSSUrlVisitor.class
com.helger.css.decl.visit.DefaultCSSVisitor.class
com.helger.css.decl.visit.ICSSUrlVisitor.class
com.helger.css.decl.visit.ICSSVisitor.class
com.helger.css.handler.CSSHandler.class
com.helger.css.handler.CSSHandlingException.class
com.helger.css.handler.CSSNodeToDomainObject.class
com.helger.css.handler.DoNothingCSSParseExceptionCallback.class
com.helger.css.handler.ECSSNodeType$1.class
com.helger.css.handler.ECSSNodeType.class
com.helger.css.handler.ICSSParseExceptionCallback.class
com.helger.css.handler.LoggingCSSParseExceptionCallback.class
com.helger.css.media.CSSMediaList.class
com.helger.css.media.ECSSMediaExpressionFeature.class
com.helger.css.media.ECSSMedium.class
com.helger.css.media.ICSSMediaList.class
com.helger.css.parser.AbstractParserCSS.class
com.helger.css.parser.CSSCharStream.class
com.helger.css.parser.CSSNode.class
com.helger.css.parser.CSSParseHelper.class
com.helger.css.parser.CharStream.class
com.helger.css.parser.JJTParserCSS30State.class
com.helger.css.parser.JJTParserCSSCharsetDetectorState.class
com.helger.css.parser.JavaCharStream.class
com.helger.css.parser.Node.class
com.helger.css.parser.ParseEOFException.class
com.helger.css.parser.ParseException.class
com.helger.css.parser.ParserCSS30$1.class
com.helger.css.parser.ParserCSS30$JJCalls.class
com.helger.css.parser.ParserCSS30$LookaheadSuccess.class
com.helger.css.parser.ParserCSS30.class
com.helger.css.parser.ParserCSS30Constants.class
com.helger.css.parser.ParserCSS30TokenManager.class
com.helger.css.parser.ParserCSS30TreeConstants.class
com.helger.css.parser.ParserCSSCharsetDetector.class
com.helger.css.parser.ParserCSSCharsetDetectorConstants.class
com.helger.css.parser.ParserCSSCharsetDetectorTokenManager.class
com.helger.css.parser.ParserCSSCharsetDetectorTreeConstants.class
com.helger.css.parser.Provider.class
com.helger.css.parser.ReadOnlyToken.class
com.helger.css.parser.SimpleNode.class
com.helger.css.parser.StreamProvider.class
com.helger.css.parser.StringProvider.class
com.helger.css.parser.Token.class
com.helger.css.parser.TokenMgrException.class
com.helger.css.property.AbstractCSSProperty.class
com.helger.css.property.AbstractCSSPropertyEnums.class
com.helger.css.property.CCSSProperties.class
com.helger.css.property.CSSPropertyColor.class
com.helger.css.property.CSSPropertyDouble.class
com.helger.css.property.CSSPropertyEnum.class
com.helger.css.property.CSSPropertyEnumOrColor.class
com.helger.css.property.CSSPropertyEnumOrColors.class
com.helger.css.property.CSSPropertyEnumOrInt.class
com.helger.css.property.CSSPropertyEnumOrNumber.class
com.helger.css.property.CSSPropertyEnumOrNumbers.class
com.helger.css.property.CSSPropertyEnumOrRect.class
com.helger.css.property.CSSPropertyEnumOrURL.class
com.helger.css.property.CSSPropertyEnums.class
com.helger.css.property.CSSPropertyFree.class
com.helger.css.property.CSSPropertyNumber.class
com.helger.css.property.CSSPropertyNumbers.class
com.helger.css.property.CSSPropertyURL.class
com.helger.css.property.ECSSProperty.class
com.helger.css.property.ICSSProperty.class
com.helger.css.property.customizer.AbstractCSSPropertyCustomizer.class
com.helger.css.property.customizer.CSSPropertyCustomizerBorderBottomLeftRadius.class
com.helger.css.property.customizer.CSSPropertyCustomizerBorderBottomRightRadius.class
com.helger.css.property.customizer.CSSPropertyCustomizerBorderRadius.class
com.helger.css.property.customizer.CSSPropertyCustomizerBorderTopLeftRadius.class
com.helger.css.property.customizer.CSSPropertyCustomizerBorderTopRightRadius.class
com.helger.css.property.customizer.CSSPropertyCustomizerOpacity.class
com.helger.css.property.customizer.ICSSPropertyCustomizer.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
|