2021-12-28 11:40:09 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-12-28 13:07:36 +00:00
|
|
|
<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>
|
2021-12-28 11:40:09 +00:00
|
|
|
|
2021-12-28 13:07:36 +00:00
|
|
|
<groupId>com.mousetech.gourmet</groupId>
|
|
|
|
<artifactId>jsf-primefaces-datatable</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2021-12-28 11:40:09 +00:00
|
|
|
|
2021-12-28 13:07:36 +00:00
|
|
|
<name>jsf-primefaces-datatable</name>
|
|
|
|
<description>JSF PrimeFaces DataTable Example</description>
|
|
|
|
<url>https://codenotfound.com/jsf-primefaces-datatable-example.html</url>
|
2021-12-28 11:40:09 +00:00
|
|
|
|
2021-12-28 13:07:36 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.1.0.RELEASE</version>
|
|
|
|
<relativePath /> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>11</java.version>
|
|
|
|
<joinfaces.version>3.3.0-rc2</joinfaces.version>
|
|
|
|
</properties>
|
2021-12-28 11:40:09 +00:00
|
|
|
|
2021-12-28 13:07:36 +00:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.joinfaces</groupId>
|
|
|
|
<artifactId>joinfaces-dependencies</artifactId>
|
|
|
|
<version>${joinfaces.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-12-28 11:40:09 +00:00
|
|
|
|
|
|
|
<dependencies>
|
2021-12-28 13:07:36 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.joinfaces</groupId>
|
|
|
|
<artifactId>primefaces-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.enterprise</groupId>
|
|
|
|
<artifactId>cdi-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.gwenn</groupId>
|
|
|
|
<artifactId>sqlite-dialect</artifactId>
|
|
|
|
<version>0.1.2</version>
|
|
|
|
</dependency>
|
2021-12-28 11:40:09 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2021-12-28 13:07:36 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-12-28 11:40:09 +00:00
|
|
|
</project>
|