| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 17 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|---|
| 18 |
|
|---|
| 19 |
<parent> |
|---|
| 20 |
<groupId>org.joiningtracks</groupId> |
|---|
| 21 |
<artifactId>his</artifactId> |
|---|
| 22 |
<version>1.6.0</version> |
|---|
| 23 |
<relativePath>../pom.xml</relativePath> |
|---|
| 24 |
</parent> |
|---|
| 25 |
|
|---|
| 26 |
<modelVersion>4.0.0</modelVersion> |
|---|
| 27 |
<name>his-data</name> |
|---|
| 28 |
<groupId>org.joiningtracks</groupId> |
|---|
| 29 |
<artifactId>his-data</artifactId> |
|---|
| 30 |
<packaging>jar</packaging> |
|---|
| 31 |
|
|---|
| 32 |
<build> |
|---|
| 33 |
<plugins> |
|---|
| 34 |
<plugin> |
|---|
| 35 |
<groupId>org.codehaus.mojo</groupId> |
|---|
| 36 |
<artifactId>sql-maven-plugin</artifactId> |
|---|
| 37 |
<dependencies> |
|---|
| 38 |
<dependency> |
|---|
| 39 |
<groupId>mysql</groupId> |
|---|
| 40 |
<artifactId>mysql-connector-java</artifactId> |
|---|
| 41 |
<version>5.1.5</version> |
|---|
| 42 |
<type>jar</type> |
|---|
| 43 |
<scope>provided</scope> |
|---|
| 44 |
</dependency> |
|---|
| 45 |
</dependencies> |
|---|
| 46 |
<configuration> |
|---|
| 47 |
<driver>com.mysql.jdbc.Driver</driver> |
|---|
| 48 |
<username>build</username> |
|---|
| 49 |
<password>build</password> |
|---|
| 50 |
<url>jdbc:mysql://localhost:3306/build_his?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8</url> |
|---|
| 51 |
</configuration> |
|---|
| 52 |
<executions> |
|---|
| 53 |
<execution> |
|---|
| 54 |
<id>create-db</id> |
|---|
| 55 |
<phase>process-test-resources</phase> |
|---|
| 56 |
<goals> |
|---|
| 57 |
<goal>execute</goal> |
|---|
| 58 |
</goals> |
|---|
| 59 |
<configuration> |
|---|
| 60 |
<srcFiles> |
|---|
| 61 |
<srcFile>${basedir}/etc/create_db.sql</srcFile> |
|---|
| 62 |
</srcFiles> |
|---|
| 63 |
</configuration> |
|---|
| 64 |
</execution> |
|---|
| 65 |
</executions> |
|---|
| 66 |
</plugin> |
|---|
| 67 |
</plugins> |
|---|
| 68 |
</build> |
|---|
| 69 |
|
|---|
| 70 |
<dependencies> |
|---|
| 71 |
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 |
<dependency> |
|---|
| 75 |
<groupId>org.joiningtracks</groupId> |
|---|
| 76 |
<artifactId>his-support-xmldb</artifactId> |
|---|
| 77 |
<version>${project.version}</version> |
|---|
| 78 |
</dependency> |
|---|
| 79 |
|
|---|
| 80 |
<dependency> |
|---|
| 81 |
<groupId>org.joiningtracks</groupId> |
|---|
| 82 |
<artifactId>his-support-util</artifactId> |
|---|
| 83 |
<version>${project.version}</version> |
|---|
| 84 |
</dependency> |
|---|
| 85 |
|
|---|
| 86 |
<dependency> |
|---|
| 87 |
<groupId>org.joiningtracks</groupId> |
|---|
| 88 |
<artifactId>his-support-data</artifactId> |
|---|
| 89 |
<version>${project.version}</version> |
|---|
| 90 |
</dependency> |
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
<dependency> |
|---|
| 94 |
<groupId>c3p0</groupId> |
|---|
| 95 |
<artifactId>c3p0</artifactId> |
|---|
| 96 |
<version>0.9.1.2</version> |
|---|
| 97 |
</dependency> |
|---|
| 98 |
|
|---|
| 99 |
<dependency> |
|---|
| 100 |
<groupId>mysql</groupId> |
|---|
| 101 |
<artifactId>mysql-connector-java</artifactId> |
|---|
| 102 |
<version>5.1.5</version> |
|---|
| 103 |
</dependency> |
|---|
| 104 |
|
|---|
| 105 |
<dependency> |
|---|
| 106 |
<groupId>exist</groupId> |
|---|
| 107 |
<artifactId>exist</artifactId> |
|---|
| 108 |
<version>1.2.4</version> |
|---|
| 109 |
</dependency> |
|---|
| 110 |
|
|---|
| 111 |
<dependency> |
|---|
| 112 |
<groupId>org.joiningtracks</groupId> |
|---|
| 113 |
<artifactId>his-support-testutil</artifactId> |
|---|
| 114 |
<version>${project.version}</version> |
|---|
| 115 |
<scope>test</scope> |
|---|
| 116 |
</dependency> |
|---|
| 117 |
|
|---|
| 118 |
|
|---|
| 119 |
|
|---|
| 120 |
<dependency> |
|---|
| 121 |
<groupId>exist</groupId> |
|---|
| 122 |
<artifactId>exist-optional</artifactId> |
|---|
| 123 |
<version>1.2.4</version> |
|---|
| 124 |
<scope>test</scope> |
|---|
| 125 |
</dependency> |
|---|
| 126 |
|
|---|
| 127 |
<dependency> |
|---|
| 128 |
<groupId>exist</groupId> |
|---|
| 129 |
<artifactId>exist-modules</artifactId> |
|---|
| 130 |
<version>1.2.4</version> |
|---|
| 131 |
<scope>test</scope> |
|---|
| 132 |
</dependency> |
|---|
| 133 |
|
|---|
| 134 |
<dependency> |
|---|
| 135 |
<groupId>exist</groupId> |
|---|
| 136 |
<artifactId>exist-ngram-module</artifactId> |
|---|
| 137 |
<version>1.2.4</version> |
|---|
| 138 |
<scope>test</scope> |
|---|
| 139 |
</dependency> |
|---|
| 140 |
|
|---|
| 141 |
<dependency> |
|---|
| 142 |
<groupId>commons</groupId> |
|---|
| 143 |
<artifactId>commons-resolver</artifactId> |
|---|
| 144 |
<version>1.2</version> |
|---|
| 145 |
<scope>test</scope> |
|---|
| 146 |
</dependency> |
|---|
| 147 |
|
|---|
| 148 |
<dependency> |
|---|
| 149 |
<groupId>quartz</groupId> |
|---|
| 150 |
<artifactId>quartz</artifactId> |
|---|
| 151 |
<version>1.6.0</version> |
|---|
| 152 |
<scope>test</scope> |
|---|
| 153 |
</dependency> |
|---|
| 154 |
|
|---|
| 155 |
<dependency> |
|---|
| 156 |
<groupId>xerces</groupId> |
|---|
| 157 |
<artifactId>xercesImpl</artifactId> |
|---|
| 158 |
<version>2.9.1</version> |
|---|
| 159 |
<scope>test</scope> |
|---|
| 160 |
</dependency> |
|---|
| 161 |
|
|---|
| 162 |
|
|---|
| 163 |
<dependency> |
|---|
| 164 |
<groupId>org.apache.xmlrpc</groupId> |
|---|
| 165 |
<artifactId>xmlrpc</artifactId> |
|---|
| 166 |
<version>1.2</version> |
|---|
| 167 |
<classifier>patched</classifier> |
|---|
| 168 |
</dependency> |
|---|
| 169 |
|
|---|
| 170 |
<dependency> |
|---|
| 171 |
<groupId>joda-time</groupId> |
|---|
| 172 |
<artifactId>joda-time-hibernate</artifactId> |
|---|
| 173 |
<version>1.0</version> |
|---|
| 174 |
<exclusions> |
|---|
| 175 |
<exclusion> |
|---|
| 176 |
<groupId>hibernate</groupId> |
|---|
| 177 |
<artifactId>hibernate</artifactId> |
|---|
| 178 |
</exclusion> |
|---|
| 179 |
<exclusion> |
|---|
| 180 |
<groupId>hsqldb</groupId> |
|---|
| 181 |
<artifactId>hsqldb</artifactId> |
|---|
| 182 |
</exclusion> |
|---|
| 183 |
<exclusion> |
|---|
| 184 |
<groupId>ehcache</groupId> |
|---|
| 185 |
<artifactId>ehcache</artifactId> |
|---|
| 186 |
</exclusion> |
|---|
| 187 |
<exclusion> |
|---|
| 188 |
<groupId>cglib</groupId> |
|---|
| 189 |
<artifactId>cglib-full</artifactId> |
|---|
| 190 |
</exclusion> |
|---|
| 191 |
<exclusion> |
|---|
| 192 |
<groupId>commons</groupId> |
|---|
| 193 |
<artifactId>logging-api</artifactId> |
|---|
| 194 |
</exclusion> |
|---|
| 195 |
</exclusions> |
|---|
| 196 |
</dependency> |
|---|
| 197 |
|
|---|
| 198 |
<dependency> |
|---|
| 199 |
<groupId>org.hibernate</groupId> |
|---|
| 200 |
<artifactId>hibernate-entitymanager</artifactId> |
|---|
| 201 |
<version>3.3.2.GA</version> |
|---|
| 202 |
</dependency> |
|---|
| 203 |
|
|---|
| 204 |
|
|---|
| 205 |
<dependency> |
|---|
| 206 |
<groupId>concurrent</groupId> |
|---|
| 207 |
<artifactId>concurrent</artifactId> |
|---|
| 208 |
<version>1.3.4</version> |
|---|
| 209 |
</dependency> |
|---|
| 210 |
|
|---|
| 211 |
|
|---|
| 212 |
<dependency> |
|---|
| 213 |
<groupId>jbpm</groupId> |
|---|
| 214 |
<artifactId>jpdl</artifactId> |
|---|
| 215 |
<version>3.2.2</version> |
|---|
| 216 |
</dependency> |
|---|
| 217 |
<dependency> |
|---|
| 218 |
<groupId>jbpm</groupId> |
|---|
| 219 |
<artifactId>identity</artifactId> |
|---|
| 220 |
<version>3.2.2</version> |
|---|
| 221 |
</dependency> |
|---|
| 222 |
<dependency> |
|---|
| 223 |
<groupId>org.beanshell</groupId> |
|---|
| 224 |
<artifactId>bsh</artifactId> |
|---|
| 225 |
<version>2.0b4</version> |
|---|
| 226 |
</dependency> |
|---|
| 227 |
|
|---|
| 228 |
</dependencies> |
|---|
| 229 |
|
|---|
| 230 |
</project> |
|---|