core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.bacoder.parser</groupId>
<artifactId>core</artifactId>
<version>0.0.4</version>
</dependency><?xml version="1.0"?>
<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>
<parent>
<groupId>com.bacoder.parser</groupId>
<artifactId>parent</artifactId>
<version>0.0.4</version>
</parent>
<artifactId>core</artifactId>
<name>core</name>
<description>Core module for all parsers</description>
<packaging>jar</packaging>
<url>http://bacoder.com</url>
<scm>
<url>https://github.com/tfeng/parser</url>
<connection>scm:git:https://github.com/tfeng/parser.git</connection>
<developerConnection>scm:git:git@github.com:tfeng/parser.git</developerConnection>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<email>tfeng@berkeley.edu</email>
<name>Thomas Feng</name>
<url>https://github.com/tfeng</url>
<id>tfeng</id>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
</dependency>
</dependencies>
<properties>
<skip.deploy>false</skip.deploy>
</properties>
</project>