Maven Repository - POM file for JDBC derbynet 10.10.1.1 10.10.1.1

Summary

Apache Derby Network Server.

Contains the Apache Derby network server, which allows remote clients to connect to Derby databases over a network connection using the Derby client JDBC driver..

Declaration

Here is the list of declaration for derbynet. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.derby</groupId>
   <artifactId>derbynet</artifactId>
   <version>10.10.1.1</version>
</dependency>

If you think this Maven repository POM file listing for derbynet is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Apache License.

Depends on

The derbynet-10.10.1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JDBCderby 10.10.1.1
Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.
72

Plugin

The following plugins are used in the derbynet-10.10.1.1.jar

  1. maven-antrun-plugin

Packages

The following packages are defined in the derbynet-10.10.1.1.jar

org.apache.derby.drda
org.apache.derby.impl.drda
org.apache.derby.impl.tools.sysinfo
org.apache.derby.mbeans.drda
org.apache.derby.shared.common.reference
org.apache.derby.tools




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
  -->
<project
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
    xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.derby</groupId>
  <parent>
    <groupId>org.apache.derby</groupId>
    <artifactId>derby-project</artifactId>
    <version>10.10.1.1</version>
  </parent>
  <artifactId>derbynet</artifactId>
  <name>Apache Derby Network Server</name>
  <description>Contains the Apache Derby network server, which allows remote clients to connect to Derby databases over a network connection using the Derby client JDBC driver.</description>

  <dependencies>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derby</artifactId>
      <version>10.10.1.1</version>
      <optional>false</optional>
    </dependency>
  </dependencies>

  <build>
    <plugins>
        <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <configuration>
                        <tasks>

                <copy file="${basedir}/../../jars/${sanity}/derbynet.jar"
                      tofile="${basedir}/target/${project.build.finalName}.jar"
                      overwrite="true"/>

                        </tasks>
                    </configuration>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
  </build>

</project>