Permalink
Cannot retrieve contributors at this time
| <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> | |
| <groupId>com.github.jsqlparser</groupId> | |
| <artifactId>jsqlparser</artifactId> | |
| <version>4.1-SNAPSHOT</version> | |
| <name>JSQLParser library</name> | |
| <inceptionYear>2004</inceptionYear> | |
| <organization> | |
| <name>JSQLParser</name> | |
| </organization> | |
| <packaging>bundle</packaging> | |
| <url>https://github.com/JSQLParser/JSqlParser</url> | |
| <licenses> | |
| <license> | |
| <name>GNU Library or Lesser General Public License (LGPL) V2.1</name> | |
| <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> | |
| <distribution>repo</distribution> | |
| </license> | |
| <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> | |
| <dependencies> | |
| <dependency> | |
| <groupId>commons-io</groupId> | |
| <artifactId>commons-io</artifactId> | |
| <version>2.6</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.13.1</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.mockito</groupId> | |
| <artifactId>mockito-core</artifactId> | |
| <version>2.28.2</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.assertj</groupId> | |
| <artifactId>assertj-core</artifactId> | |
| <version>3.16.1</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.commons</groupId> | |
| <artifactId>commons-lang3</artifactId> | |
| <version>3.10</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.h2database</groupId> | |
| <artifactId>h2</artifactId> | |
| <version>1.4.200</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <developers> | |
| <developer> | |
| <name>Tobias Warneke</name> | |
| <email>t.warneke@gmx.net</email> | |
| </developer> | |
| </developers> | |
| <distributionManagement> | |
| <repository> | |
| <id>sonatype-nexus-staging</id> | |
| <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | |
| </repository> | |
| <snapshotRepository> | |
| <id>sonatype-nexus-snapshots</id> | |
| <url>https://oss.sonatype.org/content/repositories/snapshots</url> | |
| </snapshotRepository> | |
| </distributionManagement> | |
| <scm> | |
| <connection>scm:git:https://github.com/JSQLParser/JSqlParser.git</connection> | |
| <developerConnection>scm:git:ssh://git@github.com:JSQLParser/JSqlParser.git</developerConnection> | |
| <url>https://github.com/JSQLParser/JSqlParser.git</url> | |
| <tag>HEAD</tag> | |
| </scm> | |
| <issueManagement> | |
| <system>GitHub Issues</system> | |
| <url>https://github.com/JSQLParser/JSqlParser/issues</url> | |
| </issueManagement> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>build-helper-maven-plugin</artifactId> | |
| <version>3.2.0</version> | |
| <executions> | |
| <execution> | |
| <id>add-source</id> | |
| <phase>generate-sources</phase> | |
| <goals> | |
| <goal>add-source</goal> | |
| </goals> | |
| <configuration> | |
| <sources> | |
| <source>${project.build.directory}/generated-sources/javacc/</source> | |
| <source>${project.build.directory}/generated-sources/jjtree/</source> | |
| </sources> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.7.0</version> | |
| <configuration> | |
| <source>1.8</source> | |
| <target>1.8</target> | |
| <showWarnings>true</showWarnings> | |
| <encoding>${project.build.sourceEncoding}</encoding> | |
| <showDeprecation>true</showDeprecation> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>javacc-maven-plugin</artifactId> | |
| <version>2.6</version> | |
| <executions> | |
| <execution> | |
| <id>javacc</id> | |
| <phase>generate-sources</phase> | |
| <goals> | |
| <goal>jjtree-javacc</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <dependencies> | |
| <dependency> | |
| <groupId>net.java.dev.javacc</groupId> | |
| <artifactId>javacc</artifactId> | |
| <version>7.0.10</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-eclipse-plugin</artifactId> | |
| <version>2.9</version> | |
| <configuration> | |
| <sourceIncludes> | |
| <sourceInclude>/target/generated-sources/javacc</sourceInclude> | |
| </sourceIncludes> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-resources-plugin</artifactId> | |
| <version>2.6</version> | |
| <configuration> | |
| <encoding>${project.build.sourceEncoding}</encoding> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>license-maven-plugin</artifactId> | |
| <version>1.17</version> | |
| <configuration> | |
| <verbose>false</verbose> | |
| <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> | |
| <canUpdateDescription>false</canUpdateDescription> | |
| <licenseName>dual_lgpl_ap2</licenseName> | |
| <licenseResolver>${project.baseUri}/src/license</licenseResolver> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <id>first</id> | |
| <goals> | |
| <goal>update-file-header</goal> | |
| </goals> | |
| <phase>process-sources</phase> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-release-plugin</artifactId> | |
| <version>2.5.3</version> | |
| <configuration> | |
| <localCheckout>true</localCheckout> | |
| <pushChanges>false</pushChanges> | |
| <mavenExecutorId>forked-path</mavenExecutorId> | |
| </configuration> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.apache.maven.scm</groupId> | |
| <artifactId>maven-scm-provider-gitexe</artifactId> | |
| <version>1.9.5</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-source-plugin</artifactId> | |
| <version>3.2.1</version> | |
| <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> | |
| <version>3.1.1</version> | |
| <executions> | |
| <execution> | |
| <id>attach-javadocs</id> | |
| <configuration> | |
| <additionalparam>${javadoc.opts}</additionalparam> | |
| <doclint>none</doclint> | |
| </configuration> | |
| <goals> | |
| <goal>jar</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <version>3.7.1</version> | |
| <executions> | |
| <execution> | |
| <id>attach-descriptor</id> | |
| <goals> | |
| <goal>attach-descriptor</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <configuration> | |
| <locales>en</locales> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.eluder.coveralls</groupId> | |
| <artifactId>coveralls-maven-plugin</artifactId> | |
| <version>3.1.0</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>cobertura-maven-plugin</artifactId> | |
| <version>2.7</version> | |
| <configuration> | |
| <format>xml</format> | |
| <maxmem>256m</maxmem> | |
| <instrumentation> | |
| <excludes> | |
| <exclude>net/sf/jsqlparser/parser/*.class</exclude> | |
| <exclude>net/sf/jsqlparser/JSQLParserException.class</exclude> | |
| </excludes> | |
| </instrumentation> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.felix</groupId> | |
| <artifactId>maven-bundle-plugin</artifactId> | |
| <version>3.0.1</version> | |
| <extensions>true</extensions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>3.0.0-M4</version> | |
| <configuration> | |
| <trimStackTrace>false</trimStackTrace> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <reporting> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-report-plugin</artifactId> | |
| <version>2.22.2</version> | |
| <configuration> | |
| <outputDirectory>${project.reporting.outputDirectory}/testresults</outputDirectory> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-javadoc-plugin</artifactId> | |
| <version>3.1.0</version> | |
| <configuration> | |
| <useStandardDocletOptions>true</useStandardDocletOptions> | |
| <maxmemory>800m</maxmemory> | |
| <doclint>none</doclint> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-project-info-reports-plugin</artifactId> | |
| <version>3.0.0</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-jxr-plugin</artifactId> | |
| <version>3.0.0</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>cobertura-maven-plugin</artifactId> | |
| <version>2.7</version> | |
| <configuration> | |
| <aggregate>true</aggregate> | |
| <outputDirectory>%{project.reporting.outputDirectory}/cobertura</outputDirectory> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>findbugs-maven-plugin</artifactId> | |
| <version>3.0.5</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>javacc-maven-plugin</artifactId> | |
| <version>2.6</version> | |
| </plugin> | |
| </plugins> | |
| </reporting> | |
| <profiles> | |
| <profile> | |
| <id>sign-release-artifacts</id> | |
| <activation> | |
| <property> | |
| <name>performRelease</name> | |
| <value>true</value> | |
| </property> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-gpg-plugin</artifactId> | |
| <version>1.6</version> | |
| <executions> | |
| <execution> | |
| <id>sign-artifacts</id> | |
| <phase>verify</phase> | |
| <goals> | |
| <goal>sign</goal> | |
| </goals> | |
| <configuration> | |
| <keyname>f22e0543</keyname> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <id>doclint-java8-disable</id> | |
| <activation> | |
| <jdk>[1.8,)</jdk> | |
| </activation> | |
| <properties> | |
| <javadoc.opts>-Xdoclint:none</javadoc.opts> | |
| </properties> | |
| </profile> | |
| <profile> | |
| <id>check.sources</id> | |
| <activation> | |
| <property> | |
| <name>!skipCheckSources</name> | |
| </property> | |
| <jdk>[1.8,)</jdk> | |
| </activation> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-checkstyle-plugin</artifactId> | |
| <version>3.1.0</version> | |
| <executions> | |
| <execution> | |
| <id>verify-style</id> | |
| <phase>process-classes</phase> | |
| <goals> | |
| <goal>check</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <configuration> | |
| <logViolationsToConsole>true</logViolationsToConsole> | |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> | |
| <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> | |
| <checkstyleRules> | |
| <module name="Checker"> | |
| <module name="SuppressWarningsFilter" /> | |
| <module name="FileTabCharacter" /> | |
| <!-- git checkout may change linefeeds on the fly | |
| <module name="RegexpMultiline"> | |
| <property name="format" value="(?s:(\r\n|\r).*)" /> | |
| <property name="message" value="CRLF and CR line endings are prohibited, but this file uses them." /> | |
| </module> | |
| --> | |
| <module name="TreeWalker"> | |
| <module name="AvoidNestedBlocks" /> | |
| <module name="ConstantName" /> | |
| <module name="EmptyCatchBlock" /> | |
| <module name="EmptyStatement" /> | |
| <module name="MissingOverride" /> | |
| <module name="MultipleVariableDeclarations" /> | |
| <module name="ParameterAssignment" /> | |
| <module name="StringLiteralEquality" /> | |
| <module name="RedundantImport" /> | |
| <module name="UnusedImports" /> | |
| <module name="WhitespaceAfter" /> | |
| <module name="NeedBraces" /> | |
| <module name="UnnecessaryParentheses" /> | |
| <module name="LeftCurly" /> | |
| <module name="RightCurly" /> | |
| <module name="SuppressWarningsHolder" /> | |
| </module> | |
| </module> | |
| </checkstyleRules> | |
| </configuration> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.puppycrawl.tools</groupId> | |
| <artifactId>checkstyle</artifactId> | |
| <version>8.29</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| <profile> | |
| <!-- for building the parser with debug flags --> | |
| <id>skip.all</id> | |
| <activation> | |
| <activeByDefault>false</activeByDefault> | |
| </activation> | |
| <properties> | |
| <maven.test.skip>true</maven.test.skip> | |
| <checkstyle.skip>true</checkstyle.skip> | |
| <maven.javadoc.skip>true</maven.javadoc.skip> | |
| <license.skipUpdateLicense>true</license.skipUpdateLicense> | |
| </properties> | |
| </profile> | |
| </profiles> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| </properties> | |
| <description>JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes. | |
| The generated hierarchy can be navigated using the Visitor Pattern.</description> | |
| </project> |