Skip to content

css4j v3.0.0

Compare
Choose a tag to compare
@carlosame carlosame released this 19 Sep 17:46
· 167 commits to master since this release

Three modules were split out from the css4j module in 2.x: tokenproducer, carte-util and xml-dtd. This should give more flexibility to developers that only want one of them (or want to use css4j without xml-dtd).

Now you can use finer-grained modules, but if you used css4j together with DTD classes, in Maven you now need to specify the xml-dtd module separately, like:

    <dependency>
		<groupId>io.sf.carte</groupId>
		<artifactId>xml-dtd</artifactId>
		<version>${css4j.version}</version>
		<type>jar</type>
		<scope>compile</scope>
		<optional>false</optional>
    </dependency>
    <dependency>
		<groupId>io.sf.carte</groupId>
		<artifactId>css4j</artifactId>
		<version>${css4j.version}</version>
		<type>jar</type>
		<scope>compile</scope>
		<optional>false</optional>
    </dependency>