123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Copyright 2016 The TEB Project for ACT Framework
- ~
- ~ The ACT framework Project licenses this file to you under the Apache License,
- ~ version 2.0 (the "License"); you may not use this file except in compliance
- ~ with the License. You may obtain a copy of the License at:
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- ~ License for the specific language governing permissions and limitations
- ~ under the License.
- -->
- <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>
- <groupId>com.techempower</groupId>
- <artifactId>actframework</artifactId>
- <packaging>jar</packaging>
- <version>1.9.0</version>
- <name>TEB ActFramework Project</name>
- <description>TEB benchmark project with ActFramework</description>
- <inceptionYear>2016</inceptionYear>
- <organization>
- <name>ActFramework</name>
- <url>http://actframework.org</url>
- </organization>
- <parent>
- <groupId>org.actframework</groupId>
- <artifactId>act-starter-parent</artifactId>
- <version>1.9.0.1</version>
- </parent>
- <repositories>
- <repository>
- <id>sonatype-nexus-snapshots</id>
- <name>Sonatype Nexus Snapshots</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>sonatype-nexus-snapshots</id>
- <name>Sonatype Nexus Snapshots</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- <properties>
- <java.version>1.8</java.version>
- <mysql.version>8.0.28</mysql.version>
- <postgres-jdbc.version>42.4.1</postgres-jdbc.version>
- <morphia.version>1.3.2</morphia.version>
- <ebean-annotation.version>3.4</ebean-annotation.version>
- <app.entry>com.techempower.act.AppEntry</app.entry>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-mustache</artifactId>
- </dependency>
- <dependency>
- <groupId>io.ebean</groupId>
- <artifactId>ebean-annotation</artifactId>
- <version>${ebean-annotation.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mongodb.morphia</groupId>
- <artifactId>morphia</artifactId>
- <version>${morphia.version}</version>
- </dependency>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-sql-common</artifactId>
- <version>1.6.0</version>
- <exclusions>
- <exclusion>
- <groupId>org.avaje.ebean</groupId>
- <artifactId>ebean</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.avaje.ebean</groupId>
- <artifactId>ebean-agent</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>mongo</id>
- <build>
- <finalName>teb-act-mongo</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-morphia</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>ebean_mysql</id>
- <build>
- <finalName>teb-act-ebean-mysql</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-ebean</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>ebean_pgsql</id>
- <build>
- <finalName>teb-act-ebean-pgsql</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-ebean</artifactId>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgres-jdbc.version}</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>hibernate_mysql</id>
- <build>
- <finalName>teb-act-hibernate-mysql</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-hibernate</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>hibernate_pgsql</id>
- <build>
- <finalName>teb-act-hibernate-pgsql</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-hibernate</artifactId>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgres-jdbc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>eclipselink_pgsql</id>
- <build>
- <finalName>teb-act-eclipselink-pgsql</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-eclipselink</artifactId>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>${postgres-jdbc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>eclipselink_mysql</id>
- <build>
- <finalName>teb-act-eclipselink-mysql</finalName>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.actframework</groupId>
- <artifactId>act-eclipselink</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- </project>
|