akiban-sql-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.akiban</groupId> <artifactId>akiban-sql-parser</artifactId> <version>1.0.16</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- Required for deploying to Sonatype --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.akiban</groupId> <artifactId>akiban-sql-parser</artifactId> <version>1.0.16</version> <packaging>jar</packaging> <name>Akiban SQL Parser</name> <description>Production quality Java parser for the SQL language.</description> <url>https://launchpad.net/akiban-sql-parser/</url> <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> <scm> <url>https://code.launchpad.net/akiban-sql-parser</url> <connection>scm:bazaar:https://code.launchpad.net/akiban-sql-parser</connection> </scm> <organization> <name>Akiban Technologies, Inc</name> <url>http://www.akiban.com</url> </organization> <developers> <developer> <id>mmcm</id> <name>Mike McMahon</name> <email>mike.mcmahon@akiban.com</email> <organization>Akiban Technologies, Inc.</organization> <organizationUrl>http://www.akiban.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-5</timezone> </developer> </developers> <properties> <BZR_REVISION></BZR_REVISION> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <distributionManagement> <repository> <id>AlibanLocal</id> <name>Akiban Local release repository</name> <url>http://sneezy:8095/nexus/content/repostories/releases/</url> </repository> <snapshotRepository> <id>AkibanLocal</id> <name>Akiban Local Snapshot Repository</name> <url>http://sneezy:8095/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Compile for Java 6 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- Build source jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- JavaCC plugin --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>javacc</id> <goals> <goal>javacc</goal> </goals> <configuration> </configuration> </execution> </executions> </plugin> <!-- Unit tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <!-- Generate test-jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <!-- License checking --> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <header>src/etc/header.txt</header> <headerSections> <headerSection> <key>__YEAR_SECTION__</key> <defaultValue>2013</defaultValue> <ensureMatch>20(11|12|13)\-2013|2013</ensureMatch> </headerSection> </headerSections> <strictCheck>true</strictCheck> <failIfMissing>true</failIfMissing> <excludes> <!-- General files that can't have or don't need header --> <exclude>**/*.sql</exclude> <exclude>**/*.expected</exclude> <exclude>**/*.error</exclude> <exclude>**/*.jj</exclude> <exclude>**/*.features</exclude> <exclude>release_files/**</exclude> <exclude>.bzrignore</exclude> <exclude>.idea/**</exclude> <exclude>LICENSE.txt</exclude> <exclude>README.rst</exclude> <exclude>NOTICE</exclude> <exclude>build_release.sh</exclude> </excludes> <mapping> <g>JAVADOC_STYLE</g> <yml>SCRIPT_STYLE</yml> </mapping> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.2</version> <extensions>true</extensions> <configuration> <serverId>AkibanLocal</serverId> <nexusUrl>http://sneezy:8095/nexus/</nexusUrl> </configuration> </plugin> </plugins> </build> </project>