metachart-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.metachart</groupId> <artifactId>metachart-core</artifactId> <version>0.0.7</version> </dependency>
<?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>org.metachart</groupId> <artifactId>metachart</artifactId> <version>0.0.7</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>metachart-core</artifactId> <packaging>jar</packaging> <name>MC - Core</name> <dependencyManagement> <dependencies> <dependency> <groupId>org.metachart</groupId> <artifactId>metachart-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.metachart</groupId> <artifactId>metachart-util</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.metachart</groupId> <artifactId>metachart-xml</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>net.sf.exlp</groupId> <artifactId>exlp-shell</artifactId> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <scope>provided</scope> </dependency> <!--2022-09-04 tk Preparing removal <dependency> <groupId>jola-time</groupId> <artifactId>jola-time</artifactId> </dependency> --> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>net.sf.exlp</groupId> <artifactId>exlp-util</artifactId> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> <scope>provided</scope> </dependency> <!-- JSF --> <dependency> <groupId>org.jboss.spec.javax.el</groupId> <artifactId>jboss-el-api_3.0_spec</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.spec.javax.faces</groupId> <artifactId>jboss-jsf-api_2.3_spec</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.spec.javax.servlet</groupId> <artifactId>jboss-servlet-api_4.0_spec</artifactId> <scope>provided</scope> </dependency> <!-- Primefaces --> <dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces</artifactId> <scope>provided</scope> </dependency> <!-- <dependency> <groupId>org.primefaces.extensions</groupId> <artifactId>primefaces-extensions</artifactId> <scope>provided</scope> </dependency> --> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <!-- Test --> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <type>jar</type> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>