You can download segment-2.0.0.jar in this page.
MIT License
segment-2.0.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/net.loomchild/segment/pom.properties META-INF/maven/net.loomchild/segment/pom.xml META-INF/sun-jaxb.episode net.loomchild.segment.AbstractTextIterator.class net.loomchild.segment.TextIterator.class net.loomchild.segment.srx.LanguageMap.class net.loomchild.segment.srx.LanguageRule.class net.loomchild.segment.srx.Rule.class net.loomchild.segment.srx.RuleManager.class net.loomchild.segment.srx.RuleMatcher.class net.loomchild.segment.srx.SrxDocument.class net.loomchild.segment.srx.SrxDocumentCache.class net.loomchild.segment.srx.SrxParser.class net.loomchild.segment.srx.SrxTextIterator.class net.loomchild.segment.srx.SrxTransformer.class net.loomchild.segment.srx.TextManager.class net.loomchild.segment.srx.io.Srx1Parser.class net.loomchild.segment.srx.io.Srx1Transformer.class net.loomchild.segment.srx.io.Srx2Parser.class net.loomchild.segment.srx.io.Srx2SaxParser.class net.loomchild.segment.srx.io.Srx2StaxParser.class net.loomchild.segment.srx.io.Srx2Transformer.class net.loomchild.segment.srx.io.SrxAnyParser.class net.loomchild.segment.srx.io.SrxAnyTransformer.class net.loomchild.segment.srx.io.SrxVersion.class net.loomchild.segment.srx.io.bind.Afterbreak.class net.loomchild.segment.srx.io.bind.Beforebreak.class net.loomchild.segment.srx.io.bind.Body.class net.loomchild.segment.srx.io.bind.Formathandle.class net.loomchild.segment.srx.io.bind.Header.class net.loomchild.segment.srx.io.bind.Languagemap.class net.loomchild.segment.srx.io.bind.Languagerule.class net.loomchild.segment.srx.io.bind.Languagerules.class net.loomchild.segment.srx.io.bind.Maprules.class net.loomchild.segment.srx.io.bind.ObjectFactory.class net.loomchild.segment.srx.io.bind.Rule.class net.loomchild.segment.srx.io.bind.Srx.class net.loomchild.segment.srx.io.bind.package-info.class net.loomchild.segment.srx.legacy.AccurateSrxTextIterator.class net.loomchild.segment.srx.legacy.Buffer.class net.loomchild.segment.srx.legacy.FastTextIterator.class net.loomchild.segment.srx.legacy.MergedPattern.class net.loomchild.segment.srx.legacy.ReaderCharSequence.class net.loomchild.segment.srx.legacy.ReaderMatcher.class net.loomchild.segment.srx.legacy.ScannerSrxTextIterator.class net.loomchild.segment.util.Bind.class net.loomchild.segment.util.IORuntimeException.class net.loomchild.segment.util.IgnoreDTDEntityResolver.class net.loomchild.segment.util.LoggingValidationEventHandler.class net.loomchild.segment.util.NullWriter.class net.loomchild.segment.util.ResourceNotFoundException.class net.loomchild.segment.util.TransformationErrorListener.class net.loomchild.segment.util.Util.class net.loomchild.segment.util.Version.class net.loomchild.segment.util.XmlException.class net/loomchild/segment/res/xml/default.srx net/loomchild/segment/res/xml/srx10.xsd net/loomchild/segment/res/xml/srx10.xsl net/loomchild/segment/res/xml/srx20.xsd net/loomchild/segment/res/xml/strip-space.xsl
segment-2.0.0.pom file content.
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.loomchild</groupId> <artifactId>segment</artifactId> <version>2.0.0</version> <packaging>jar</packaging> <name>segment</name> <url>https://github.com/loomchild/segment</url> <description>Library used to split text into segments.</description> <developers> <developer> <name>Jarek Lipski</name> <email>pub@loomchild.net</email> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <url>https://github.com/loomchild/segment</url> <connection>scm:git:ssh://git@github.com/loomchild/segment.git</connection> <developerConnection>scm:git:ssh://git@github.com/loomchild/segment.git</developerConnection> <tag>2.0.0</tag> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> </properties> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <version>0.8.1</version> <configuration> <schemaIncludes> <include>net/loomchild/segment/res/xml/srx20.xsd</include> </schemaIncludes> <generatePackage>net.loomchild.segment.srx.io.bind</generatePackage> <cleanPackageDirectories>true</cleanPackageDirectories> </configuration> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <configuration> <excludePackageNames>net.loomchild.segment.srx.io.bind</excludePackageNames> </configuration> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Build-Date>${maven.build.timestamp}</Build-Date> </manifestEntries> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <executions> <execution> <id>default</id> <goals> <goal>perform</goal> </goals> <configuration> <pomFileName>segment/pom.xml</pomFileName> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>net.loomchild</groupId> <artifactId>segment</artifactId> <version>2.0.0</version> </dependency>
If you think the following segment-2.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download segment-2.0.0.jar file