|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 1 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <parent>
|
4 | 4 | <artifactId>stack4things</artifactId>
|
|
16 | 16 | <properties>
|
17 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
18 | 18 | <resteasy.version>3.1.0.Final</resteasy.version>
|
| 19 | + <drools.version>6.5.0.Final</drools.version> |
| 20 | + <jackson-annotations.version>2.8.3</jackson-annotations.version> |
| 21 | + <hibernate.version>5.0.11.Final</hibernate.version> |
19 | 22 | </properties>
|
20 | 23 |
|
21 | 24 | <dependencies>
|
|
36 | 39 | <artifactId>resteasy-multipart-provider</artifactId>
|
37 | 40 | <version>${resteasy.version}</version>
|
38 | 41 | </dependency>
|
| 42 | + |
39 | 43 | <dependency>
|
40 | 44 | <groupId>org.jboss.resteasy</groupId>
|
41 | 45 | <artifactId>resteasy-jackson-provider</artifactId>
|
42 | 46 | <version>${resteasy.version}</version>
|
43 | 47 | </dependency>
|
| 48 | + |
| 49 | + <dependency> |
| 50 | + <groupId>com.github.usmanovbf</groupId> |
| 51 | + <artifactId>server-api</artifactId> |
| 52 | + <version>1.0-SNAPSHOT</version> |
| 53 | + </dependency> |
| 54 | + |
| 55 | + <dependency> |
| 56 | + <groupId>org.slf4j</groupId> |
| 57 | + <artifactId>slf4j-api</artifactId> |
| 58 | + <version>1.7.23</version> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <dependency> |
| 62 | + <groupId>org.slf4j</groupId> |
| 63 | + <artifactId>slf4j-simple</artifactId> |
| 64 | + <version>1.7.23</version> |
| 65 | + </dependency> |
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>org.kie</groupId> |
| 69 | + <artifactId>kie-api</artifactId> |
| 70 | + <version>${drools.version}</version> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + <dependency> |
| 74 | + <groupId>org.drools</groupId> |
| 75 | + <artifactId>drools-core</artifactId> |
| 76 | + <version>${drools.version}</version> |
| 77 | + </dependency> |
| 78 | + |
| 79 | + <dependency> |
| 80 | + <groupId>org.drools</groupId> |
| 81 | + <artifactId>drools-compiler</artifactId> |
| 82 | + <version>${drools.version}</version> |
| 83 | + </dependency> |
| 84 | + <!--Логирование для KIE--> |
| 85 | + <dependency> |
| 86 | + <groupId>org.slf4j</groupId> |
| 87 | + <artifactId>slf4j-simple</artifactId> |
| 88 | + <version>1.6.2</version> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + <dependency> |
| 92 | + <groupId>uk.co.jemos.podam</groupId> |
| 93 | + <artifactId>podam</artifactId> |
| 94 | + <version>6.0.3.RELEASE</version> |
| 95 | + </dependency> |
| 96 | + |
| 97 | + <dependency> |
| 98 | + <groupId>commons-io</groupId> |
| 99 | + <artifactId>commons-io</artifactId> |
| 100 | + <version>2.5</version> |
| 101 | + </dependency> |
| 102 | + |
| 103 | + <dependency> |
| 104 | + <groupId>org.hibernate</groupId> |
| 105 | + <artifactId>hibernate-core</artifactId> |
| 106 | + <version>${hibernate.version}</version> |
| 107 | + </dependency> |
| 108 | + |
| 109 | + <dependency> |
| 110 | + <groupId>org.hibernate</groupId> |
| 111 | + <artifactId>hibernate-entitymanager</artifactId> |
| 112 | + <version>${hibernate.version}</version> |
| 113 | + </dependency> |
| 114 | + |
| 115 | + <dependency> |
| 116 | + <groupId>org.postgresql</groupId> |
| 117 | + <artifactId>postgresql</artifactId> |
| 118 | + <version>9.4.1211.jre7</version> |
| 119 | + </dependency> |
| 120 | + |
| 121 | + <dependency> |
| 122 | + <groupId>log4j</groupId> |
| 123 | + <artifactId>log4j</artifactId> |
| 124 | + <version>1.2.17</version> |
| 125 | + </dependency> |
| 126 | + |
| 127 | + <dependency> |
| 128 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 129 | + <artifactId>jackson-annotations</artifactId> |
| 130 | + <version>${jackson-annotations.version}</version> |
| 131 | + </dependency> |
| 132 | + |
| 133 | + <dependency> |
| 134 | + <groupId>com.googlecode.json-simple</groupId> |
| 135 | + <artifactId>json-simple</artifactId> |
| 136 | + <version>1.1</version> |
| 137 | + </dependency> |
| 138 | + |
| 139 | + <dependency> |
| 140 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 141 | + <artifactId>jackson-databind</artifactId> |
| 142 | + <version>2.8.3</version> |
| 143 | + </dependency> |
44 | 144 | </dependencies>
|
45 | 145 |
|
46 | 146 | <build>
|
|
49 | 149 | <plugin>
|
50 | 150 | <artifactId>maven-compiler-plugin</artifactId>
|
51 | 151 | <configuration>
|
52 |
| - <source>1.6</source> |
53 |
| - <target>1.6</target> |
| 152 | + <source>1.8</source> |
| 153 | + <target>1.8</target> |
| 154 | + </configuration> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <artifactId>maven-war-plugin</artifactId> |
| 158 | + <configuration> |
| 159 | + <outputDirectory> |
| 160 | + app |
| 161 | + </outputDirectory> |
54 | 162 | </configuration>
|
| 163 | + <executions> |
| 164 | + <execution> |
| 165 | + <phase>package</phase> |
| 166 | + </execution> |
| 167 | + </executions> |
55 | 168 | </plugin>
|
56 |
| - <!--<plugin>--> |
57 |
| - <!--<artifactId>maven-assembly-plugin</artifactId>--> |
58 |
| - <!--<version>3.0.0</version>--> |
59 |
| - |
60 |
| - <!--<configuration>--> |
61 |
| - <!--<descriptorRefs>--> |
62 |
| - <!--<descriptorRef>jar-with-dependencies</descriptorRef>--> |
63 |
| - <!--</descriptorRefs>--> |
64 |
| - <!--</configuration>--> |
65 |
| - <!--<executions>--> |
66 |
| - <!--<execution>--> |
67 |
| - <!--<id>make-assembly</id> <!– this is used for inheritance merges –>--> |
68 |
| - <!--<phase>package</phase> <!– bind to the packaging phase –>--> |
69 |
| - <!--<goals>--> |
70 |
| - <!--<goal>single</goal>--> |
71 |
| - <!--</goals>--> |
72 |
| - <!--</execution>--> |
73 |
| - <!--</executions>--> |
74 |
| - <!--</plugin>--> |
| 169 | + |
| 170 | + |
75 | 171 | </plugins>
|
76 | 172 | </build>
|
| 173 | + |
| 174 | + <repositories> |
| 175 | + <repository> |
| 176 | + <id>jboss-public-repository-group</id> |
| 177 | + <name>JBoss Public Repository Group</name> |
| 178 | + <url>http://repository.jboss.org/nexus/content/groups/public/</url> |
| 179 | + <releases> |
| 180 | + <enabled>true</enabled> |
| 181 | + <updatePolicy>never</updatePolicy> |
| 182 | + </releases> |
| 183 | + <snapshots> |
| 184 | + <enabled>false</enabled> |
| 185 | + <updatePolicy>daily</updatePolicy> |
| 186 | + </snapshots> |
| 187 | + </repository> |
| 188 | + </repositories> |
| 189 | + |
77 | 190 | </project>
|
0 commit comments