eigenbase-resgen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.hydromatic</groupId>
<artifactId>eigenbase-resgen</artifactId>
<version>1.3.7</version>
</dependency><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>
<!-- The basics. -->
<parent>
<groupId>net.hydromatic</groupId>
<artifactId>parent</artifactId>
<version>0.1</version>
</parent>
<artifactId>eigenbase-resgen</artifactId>
<version>1.3.7</version>
<packaging>bundle</packaging>
<!-- More project information. -->
<name>eigenbase-resgen</name>
<description>Generator of type-safe wrappers for Java resource files</description>
<url>http://github.com/julianhyde/eigenbase-resgen</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Julian Hyde</name>
<url>http://www.hydromatic.net</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>julianhyde</id>
<name>Julian Hyde</name>
<email>jhyde@apache.org</email>
<url>https://github.com/julianhyde</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
<properties />
</developer>
</developers>
<mailingLists>
<mailingList>
<name>Apache Calcite developers list</name>
<subscribe>dev-subscribe@calcite.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@calcite.apache.org</unsubscribe>
<post>dev@calcite.apache.org</post>
<archive>https://mail-archives.apache.org/mod_mbox/calcite-dev</archive>
</mailingList>
</mailingLists>
<issueManagement>
<system>github</system>
<url>https://github.com/julianhyde/eigenbase-resgen/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/julianhyde/eigenbase-resgen.git</connection>
<developerConnection>scm:git:git@github.com:julianhyde/eigenbase-resgen.git</developerConnection>
<url>scm:git:git://github.com/julianhyde/eigenbase-resgen.git</url>
<tag>eigenbase-resgen-1.3.7</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<prerequisites>
<maven>3.2.1</maven>
</prerequisites>
<build>
<pluginManagement />
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>org.apache.tools.ant;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.hydromatic</groupId>
<artifactId>eigenbase-xom</artifactId>
<version>1.3.6</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<links>
<link>https://docs.oracle.com/javase/8/docs/api/</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>
</project>