samples/livedb/pom.xml
changeset 416 9ed8788a1a4e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/livedb/pom.xml	Fri Apr 03 16:32:36 2020 +0200
     1.3 @@ -0,0 +1,82 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     1.6 +         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     1.7 +    <modelVersion>4.0.0</modelVersion>
     1.8 +
     1.9 +    <groupId>org.apidesign.samples</groupId>
    1.10 +    <artifactId>livedb</artifactId>
    1.11 +    <version>1.0-SNAPSHOT</version>
    1.12 +    <packaging>jar</packaging>
    1.13 +
    1.14 +    <name>LiveDB</name>
    1.15 +    <organization>
    1.16 +        <name>API Design</name>
    1.17 +        <url>http://apidesign.org</url>
    1.18 +    </organization>
    1.19 +    <properties>
    1.20 +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.21 +        <maven.compiler.source>1.8</maven.compiler.source>
    1.22 +        <maven.compiler.target>1.8</maven.compiler.target>
    1.23 +        <netbeans.compile.on.save>none</netbeans.compile.on.save>
    1.24 +    </properties>
    1.25 +
    1.26 +    <build>
    1.27 +        <plugins>
    1.28 +            <plugin>
    1.29 +                <artifactId>maven-antrun-plugin</artifactId>
    1.30 +                <version>1.8</version>
    1.31 +                <executions>
    1.32 +                    <execution>
    1.33 +                        <phase>validate</phase>
    1.34 +                        <configuration>
    1.35 +                            <target>
    1.36 +                                <property name="cp" refid="maven.runtime.classpath"/>
    1.37 +                                <ant antfile="livedb.xml" target="create-db">
    1.38 +                                    <property name="cp" value="${cp}"/>
    1.39 +                                </ant>
    1.40 +                            </target>
    1.41 +                        </configuration>
    1.42 +                        <goals>
    1.43 +                            <goal>run</goal>
    1.44 +                        </goals>
    1.45 +                    </execution>
    1.46 +                </executions>
    1.47 +            </plugin>
    1.48 +        </plugins>
    1.49 +    </build>
    1.50 +
    1.51 +    <dependencies>
    1.52 +        <dependency>
    1.53 +            <groupId>org.netbeans.api</groupId>
    1.54 +            <artifactId>org-openide-util-lookup</artifactId>
    1.55 +            <version>RELEASE112</version>
    1.56 +            <type>jar</type>
    1.57 +            <scope>provided</scope>
    1.58 +        </dependency>
    1.59 +        <dependency>
    1.60 +            <groupId>org.apache.derby</groupId>
    1.61 +            <artifactId>derby</artifactId>
    1.62 +            <version>10.15.1.3</version>
    1.63 +            <type>jar</type>
    1.64 +        </dependency>
    1.65 +        <dependency>
    1.66 +            <groupId>org.apache.derby</groupId>
    1.67 +            <artifactId>derbyclient</artifactId>
    1.68 +            <version>10.15.1.3</version>
    1.69 +            <type>jar</type>
    1.70 +        </dependency>
    1.71 +        <dependency>
    1.72 +            <groupId>org.apache.derby</groupId>
    1.73 +            <artifactId>derbyshared</artifactId>
    1.74 +            <version>10.15.1.3</version>
    1.75 +            <type>jar</type>
    1.76 +        </dependency>
    1.77 +        <dependency>
    1.78 +            <groupId>junit</groupId>
    1.79 +            <artifactId>junit</artifactId>
    1.80 +            <version>4.12</version>
    1.81 +            <scope>test</scope>
    1.82 +            <type>jar</type>
    1.83 +        </dependency>
    1.84 +    </dependencies>
    1.85 +</project>