parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.vertretungsplan</groupId> <artifactId>parser</artifactId> <version>1.0.0-beta356</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>me.vertretungsplan</groupId> <artifactId>parser</artifactId> <version>1.0.0-beta356</version> <name>Substitution schedule parser library</name> <description>Java library for parsing schools' substitution schedules. Supports multiple different systems mainly used in the German-speaking countries.</description> <url>https://github.com/johan12345/substitution-schedule-parser</url> <licenses> <license> <name>Mozilla Public License Version 2.0</name> <url>https://www.mozilla.org/media/MPL/2.0/index.txt</url> </license> </licenses> <developers> <developer> <id>johan12345</id> <name>Johan von Forstner</name> <email>info@vertretungsplan.app</email> </developer> </developers> <scm> <connection>scm:git:hhttps://github.com/johan12345/substitution-schedule-parser.git</connection> <developerConnection>scm:git:https://github.com/johan12345/substitution-schedule-parser.git</developerConnection> <url>https://github.com/johan12345/substitution-schedule-parser</url> </scm> <dependencies> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.8.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.9.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>fluent-hc</artifactId> <version>4.5.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>13.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.mifmif</groupId> <artifactId>generex</artifactId> <version>1.0.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.biweekly</groupId> <artifactId>biweekly</artifactId> <version>0.6.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.googlecode.juniversalchardet</groupId> <artifactId>juniversalchardet</artifactId> <version>1.0.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.56</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.lookfirst</groupId> <artifactId>sardine</artifactId> <version>5.8</version> <scope>compile</scope> </dependency> </dependencies> </project>