source: pom.xml@ 2e507a8

Last change on this file since 2e507a8 was c388524, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

removed pom.xml from gitignore

  • Property mode set to 100644
File size: 2.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>2.4.1</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>it.finki</groupId>
12 <artifactId>tinki</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>tinki</name>
15 <description>Easy job finder.</description>
16
17 <properties>
18 <java.version>11</java.version>
19 </properties>
20
21 <dependencies>
22 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter-data-jpa</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>org.springframework.boot</groupId>
28 <artifactId>spring-boot-starter-web</artifactId>
29 </dependency>
30
31 <dependency>
32 <groupId>com.h2database</groupId>
33 <artifactId>h2</artifactId>
34 <scope>runtime</scope>
35 </dependency>
36 <dependency>
37 <groupId>org.postgresql</groupId>
38 <artifactId>postgresql</artifactId>
39 <scope>runtime</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.projectlombok</groupId>
43 <artifactId>lombok</artifactId>
44 <optional>true</optional>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-test</artifactId>
49 <scope>test</scope>
50 </dependency>
51 </dependencies>
52
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-maven-plugin</artifactId>
58 <configuration>
59 <excludes>
60 <exclude>
61 <groupId>org.projectlombok</groupId>
62 <artifactId>lombok</artifactId>
63 </exclude>
64 </excludes>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69
70</project>
Note: See TracBrowser for help on using the repository browser.