123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <?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>io.jooby</groupId>
- <artifactId>jooby-project</artifactId>
- <version>2.0.0</version>
- </parent>
- <artifactId>jooby2</artifactId>
- <groupId>com.techempower</groupId>
- <version>2.0</version>
- <name>jooby 2.x</name>
- <properties>
- <jooby.version>2.0.0</jooby.version>
- <postgresql.version>42.2.5</postgresql.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <!-- Startup class -->
- <application.class>com.techempower.App</application.class>
- </properties>
- <dependencies>
- <!-- jackson -->
- <dependency>
- <groupId>io.jooby</groupId>
- <artifactId>jooby-jackson</artifactId>
- </dependency>
- <!-- jdbc -->
- <dependency>
- <groupId>io.jooby</groupId>
- <artifactId>jooby-hikari</artifactId>
- </dependency>
- <!-- rocker -->
- <dependency>
- <groupId>io.jooby</groupId>
- <artifactId>jooby-rocker</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>
- <!-- logging -->
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- </dependency>
- <!-- ASM library -->
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>7.1</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>jooby-2x</finalName>
- <plugins>
- <plugin>
- <groupId>com.fizzed</groupId>
- <artifactId>rocker-maven-plugin</artifactId>
- <version>1.2.1</version>
- <executions>
- <execution>
- <id>generate-rocker-templates</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- <configuration>
- <templateDirectory>public</templateDirectory>
- <touchFile>/dev/null</touchFile>
- <optimize>true</optimize>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
- <configuration>
- <debug>false</debug>
- </configuration>
- </plugin>
- <!-- Build fat jar -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>netty</id>
- <dependencies>
- <dependency>
- <groupId>io.jooby</groupId>
- <artifactId>jooby-netty</artifactId>
- <version>${jooby.version}</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>undertow</id>
- <dependencies>
- <dependency>
- <groupId>io.jooby</groupId>
- <artifactId>jooby-utow</artifactId>
- <version>${jooby.version}</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jetty</id>
- <dependencies>
- <dependency>
- <groupId>io.jooby</groupId>
- <artifactId>jooby-jetty</artifactId>
- <version>${jooby.version}</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- </project>
|