Project

General

Profile

« Previous | Next » 

Revision d26c9f9a

Added by Andreas Kohlbecker about 8 years ago

#5705 fixing library dependencies for local managed cdm-server

View differences:

eu.etaxonomy.taxeditor.webapp/.classpath
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry exported="true" kind="lib" path="lib/h2-1.4.190.jar"/>
4
	<classpathentry exported="true" kind="lib" path="lib/mchange-commons-java-0.2.11.jar"/>
3 5
	<classpathentry exported="true" kind="lib" path="lib/c3p0-0.9.5.2.jar"/>
4 6
	<classpathentry exported="true" kind="lib" path="lib/mysql-connector-java-5.1.24.jar"/>
5 7
	<classpathentry exported="true" kind="lib" path="lib/javax.servlet-api-3.1.0.jar"/>
eu.etaxonomy.taxeditor.webapp/META-INF/MANIFEST.MF
12 12
 lib/jetty-all-9.2.9.v20150224.jar,
13 13
 lib/javax.servlet-api-3.1.0.jar,
14 14
 lib/mysql-connector-java-5.1.24.jar,
15
 lib/c3p0-0.9.5.2.jar
15
 lib/c3p0-0.9.5.2.jar,
16
 lib/h2-1.4.190.jar,
17
 lib/mchange-commons-java-0.2.11.jar
16 18
Bundle-Vendor: EDIT
17 19
Import-Package: org.eclipse.jface.resource,
18 20
 org.eclipse.ui.plugin
eu.etaxonomy.taxeditor.webapp/build.properties
2 2
           src/main/resources/           
3 3
bin.includes = META-INF/,\
4 4
               .,\
5
               lib/log4j-1.2.17.jar,\
6
               lib/jetty-all-9.2.9.v20150224.jar,\
7
               lib/javax.servlet-api-3.1.0.jar,\
8
               lib/mysql-connector-java-5.1.24.jar,\
9
               lib/cdmlib-remote-webapp.war,\
10
               lib/c3p0-0.9.5.2.jar
5
               lib/,\
6
               lib/h2-1.4.190.jar,\
7
               lib/mchange-commons-java-0.2.11.jar
eu.etaxonomy.taxeditor.webapp/pom.xml
46 46
              <excludeTransitive>true</excludeTransitive>
47 47
            </configuration>
48 48
          </execution>
49
          <execution>
50
            <id>copy-dependency-jars</id>
51
            <phase>validate</phase>
52
            <goals>
53
              <goal>copy-dependencies</goal>
54
            </goals>
55
            <configuration>
56
              <includeArtifactIds><!--  Comma separated list of Artifact names to include -->
57
                c3p0,mchange-commons-java,h2
58
              </includeArtifactIds>
59
              <outputDirectory>
60
                ${basedir}/lib
61
              </outputDirectory>
62
              <overWriteReleases>true</overWriteReleases>
63
              <overWriteSnapshots>true</overWriteSnapshots>
64
              <excludeTransitive>true</excludeTransitive>
65
            </configuration>
66
          </execution>
49 67
        </executions>
50 68
      </plugin>
51 69
      <plugin>
......
105 123
      <version>${cdmlib.version}</version>
106 124
      <type>war</type>
107 125
    </dependency>
126
    <dependency>
127
      <groupId>com.h2database</groupId>
128
      <artifactId>h2</artifactId>
129
      <version>1.4.190</version>
130
    </dependency>
131
     <dependency>
132
      <groupId>com.mchange</groupId>
133
      <artifactId>c3p0</artifactId>
134
      <!-- 
135
        IMPORTANT!!!
136
        this must exactly match the version as set in 
137
        cdmlib-parent pom.xml
138
      -->
139
      <version>0.9.5.2</version>
140
     </dependency>
141
     <dependency>
142
        <groupId>com.mchange</groupId>
143
        <artifactId>mchange-commons-java</artifactId>
144
        <version>0.2.11</version>
145
     </dependency>
108 146
  </dependencies>
109 147
</project>
110 148

  

Also available in: Unified diff