123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>
- <parent>
- <groupId>org.jooby</groupId>
- <artifactId>jooby-project</artifactId>
- <version>1.4.0</version>
- </parent>
- <artifactId>jooby</artifactId>
- <groupId>com.techempower</groupId>
- <version>1.0</version>
- <name>jooby</name>
- <properties>
- <jooby.version>1.4.0</jooby.version>
- <postgresql.version>42.2.5</postgresql.version>
- <rocker.touchFile>/dev/null</rocker.touchFile>
- <!-- Startup class -->
- <application.class>com.techempower.App</application.class>
- </properties>
- <dependencies>
- <!-- jackson -->
- <dependency>
- <groupId>org.jooby</groupId>
- <artifactId>jooby-jackson</artifactId>
- </dependency>
- <!-- jdbc -->
- <dependency>
- <groupId>org.jooby</groupId>
- <artifactId>jooby-jdbc</artifactId>
- </dependency>
- <!-- mySQL -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!-- postgresql -->
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgresql.version}</version>
- </dependency>
- <!-- rocker -->
- <dependency>
- <groupId>org.jooby</groupId>
- <artifactId>jooby-rocker</artifactId>
- </dependency>
- <!-- Server -->
- <dependency>
- <groupId>org.jooby</groupId>
- <artifactId>jooby-netty</artifactId>
- </dependency>
- <!-- logging -->
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- </dependency>
- <!-- Tests -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jooby</groupId>
- <artifactId>jooby</artifactId>
- <scope>test</scope>
- <classifier>tests</classifier>
- </dependency>
- <!-- Fluent HC -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>fluent-hc</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <!-- Build fat jar -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- </plugin>
- </plugins>
- <!-- rocker m2e -->
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>com.fizzed</groupId>
- <artifactId>rocker-maven-plugin</artifactId>
- <versionRange>[${rocker.version},)</versionRange>
- <goals>
- <goal>generate</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <execute>
- <runOnIncremental>true</runOnIncremental>
- </execute>
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </project>
|