| <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>com.example</groupId> |
| <artifactId>optaplanner-spring-boot-school-timetabling-quickstart</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| |
| <properties> |
| <version.org.optaplanner>8.1.0.Final</version.org.optaplanner> |
| <version.org.springframework.boot>2.2.6.RELEASE</version.org.springframework.boot> |
| |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <compiler-plugin.version>3.8.1</compiler-plugin.version> |
| <maven.compiler.target>11</maven.compiler.target> |
| <maven.compiler.source>11</maven.compiler.source> |
| <surefire-plugin.version>2.22.2</surefire-plugin.version> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-dependencies</artifactId> |
| <version>${version.org.springframework.boot}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-bom</artifactId> |
| <version>${version.org.optaplanner}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-web</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-data-rest</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-data-jpa</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.h2database</groupId> |
| <artifactId>h2</artifactId> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-spring-boot-starter</artifactId> |
| </dependency> |
| |
| <!-- Testing --> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- UI --> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>webjars-locator</artifactId> |
| <version>0.37</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>bootstrap</artifactId> |
| <version>4.5.3</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>jquery</artifactId> |
| <version>3.5.1</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>font-awesome</artifactId> |
| <version>5.15.1</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>momentjs</artifactId> |
| <version>2.24.0</version> |
| <scope>runtime</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>${compiler-plugin.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-maven-plugin</artifactId> |
| <version>${version.org.springframework.boot}</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>${surefire-plugin.version}</version> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <repositories> |
| <!-- To get snapshots during development. Remove this in the "stable" branch (which doesn't use snapshots). --> |
| <repository> |
| <id>jboss-public-repository-group</id> |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| <releases> |
| <!-- Get releases only from Maven Central which is faster. --> |
| <enabled>false</enabled> |
| </releases> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| </repository> |
| </repositories> |
| </project> |