Skip to content

Commit a8d7035

Browse files
committed
Moved classes to match Maven directory layout.
1 parent ef03d68 commit a8d7035

File tree

109 files changed

+51
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+51
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/*.jar
44
/lib
55
/testclasses
6+
/target
67

78
# Generated by JavaCC
89
/src/net/sf/jsqlparser/parser/CCJSqlParser.java

pom.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>net.sf.jsqlparser</groupId>
5+
<artifactId>jsqlparser</artifactId>
6+
<version>0.7.1</version>
7+
<name>clone of the jsqlparser library</name>
8+
<dependencies>
9+
<dependency>
10+
<groupId>junit</groupId>
11+
<artifactId>junit</artifactId>
12+
<version>3.8.2</version>
13+
</dependency>
14+
</dependencies>
15+
16+
<distributionManagement>
17+
<!-- use the following if you're not using a snapshot version. -->
18+
<repository>
19+
<id>jwall</id>
20+
<name>jwall.org Maven Repository</name>
21+
<url>https://secure.jwall.org/maven/repository/jwall</url>
22+
</repository>
23+
</distributionManagement>
24+
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<version>2.0.2</version>
30+
<configuration>
31+
<source>1.6</source>
32+
<target>1.6</target>
33+
</configuration>
34+
</plugin>
35+
<plugin>
36+
<groupId>org.codehaus.mojo</groupId>
37+
<artifactId>javacc-maven-plugin</artifactId>
38+
<executions>
39+
<execution>
40+
<id>javacc</id>
41+
<phase>generate-sources</phase>
42+
<goals>
43+
<goal>javacc</goal>
44+
</goals>
45+
</execution>
46+
</executions>
47+
</plugin>
48+
</plugins>
49+
</build>
50+
</project>
File renamed without changes.

src/net/sf/jsqlparser/expression/AllComparisonExpression.java renamed to src/main/java/net/sf/jsqlparser/expression/AllComparisonExpression.java

File renamed without changes.

src/net/sf/jsqlparser/expression/AnyComparisonExpression.java renamed to src/main/java/net/sf/jsqlparser/expression/AnyComparisonExpression.java

File renamed without changes.

src/net/sf/jsqlparser/expression/BinaryExpression.java renamed to src/main/java/net/sf/jsqlparser/expression/BinaryExpression.java

File renamed without changes.

src/net/sf/jsqlparser/expression/CaseExpression.java renamed to src/main/java/net/sf/jsqlparser/expression/CaseExpression.java

File renamed without changes.
File renamed without changes.

src/net/sf/jsqlparser/expression/DoubleValue.java renamed to src/main/java/net/sf/jsqlparser/expression/DoubleValue.java

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)