1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+
6+ <modelVersion >4.0.0</modelVersion >
7+
8+ <groupId >su.interference</groupId >
9+ <artifactId >interference</artifactId >
10+ <version >2019.3</version >
11+ <packaging >jar</packaging >
12+
13+ <name >interference</name >
14+ <description >distributed persistent layer with JPA/SQL support</description >
15+ <url >https://github.com/interference-project/interference</url >
16+
17+ <licenses >
18+ <license >
19+ <name >MIT</name >
20+ </license >
21+ </licenses >
22+
23+ <developers >
24+ <developer >
25+ <id >yuriy-glotanov</id >
26+ <name >Yuriy Glotanov</name >
27+ </developer >
28+ </developers >
29+
30+ <build >
31+ <plugins >
32+ <plugin >
33+ <groupId >org.apache.maven.plugins</groupId >
34+ <artifactId >maven-compiler-plugin</artifactId >
35+ <version >3.1</version >
36+ <configuration >
37+ <compilerVersion >1.8</compilerVersion >
38+ <source >1.8</source >
39+ <target >1.8</target >
40+ </configuration >
41+ </plugin >
42+ <plugin >
43+ <groupId >org.apache.maven.plugins</groupId >
44+ <artifactId >maven-jar-plugin</artifactId >
45+ <configuration >
46+ <archive >
47+ <manifest >
48+ <addDefaultImplementationEntries >true</addDefaultImplementationEntries >
49+ </manifest >
50+ </archive >
51+ </configuration >
52+ </plugin >
53+ </plugins >
54+ </build >
55+
56+ <dependencies >
57+
58+ <!-- dependency>
59+ <groupId>javax.persistence</groupId>
60+ <artifactId>persistence-api</artifactId>
61+ <version>1.0.2</version>
62+ </dependency-->
63+ <dependency >
64+ <groupId >javax</groupId >
65+ <artifactId >javaee-api</artifactId >
66+ <version >7.0</version >
67+ </dependency >
68+ <dependency >
69+ <groupId >ch.qos.logback</groupId >
70+ <artifactId >logback-classic</artifactId >
71+ <version >1.2.3</version >
72+ </dependency >
73+ <dependency >
74+ <groupId >org.slf4j</groupId >
75+ <artifactId >jcl-over-slf4j</artifactId >
76+ <version >1.7.21</version >
77+ </dependency >
78+
79+ </dependencies >
80+
81+ </project >
0 commit comments