way-sql-compiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>br.com.objectos</groupId>
<artifactId>way-sql-compiler</artifactId>
<version>2.1.0</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> <parent> <groupId>br.com.objectos</groupId> <artifactId>way-sql-parent</artifactId> <version>2.1.0</version> </parent> <artifactId>way-sql-compiler</artifactId> <name>objectos :: way :: sql :: compiler</name> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>jar-with-dependencies</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>br.com.objectos</groupId> <artifactId>way-code</artifactId> </dependency> <dependency> <groupId>br.com.objectos</groupId> <artifactId>way-code</artifactId> <type>test-jar</type> </dependency> <dependency> <groupId>br.com.objectos</groupId> <artifactId>way-code-apt</artifactId> </dependency> <dependency> <groupId>br.com.objectos</groupId> <artifactId>way-code-mustache</artifactId> </dependency> <dependency> <groupId>br.com.objectos</groupId> <artifactId>way-code-pojo</artifactId> </dependency> <dependency> <groupId>br.com.objectos</groupId> <artifactId>way-sql</artifactId> </dependency> <dependency> <groupId>com.google.testing.compile</groupId> <artifactId>compile-testing</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <scope>test</scope> </dependency> </dependencies> </project>