Apache Derby Database Engine and Embedded JDBC Driver.
Contains the core Apache Derby database engine, which also includes the embedded JDBC driver..
Here is the list of declaration for derby. 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>derby</artifactId> <version>10.7.1.1</version> </dependency>
If you think this Maven repository POM file listing for derby is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The following table lists the most popular artifacts which are depending on derby-10.7.1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
ORM | squeryl_2.9.2 0.9.5-6 A Scala ORM and DSL for talking with Databases using minimum verbosity and maximum type safety | 14 |
The following plugins are used in the derby-10.7.1.1.jar
The following packages are defined in the derby-10.7.1.1.jar
org.apache.derby.authentication org.apache.derby.catalog org.apache.derby.catalog.types org.apache.derby.database org.apache.derby.diag org.apache.derby.iapi.db org.apache.derby.iapi.error org.apache.derby.iapi.jdbc org.apache.derby.iapi.security org.apache.derby.iapi.services.cache org.apache.derby.iapi.services.classfile org.apache.derby.iapi.services.compiler org.apache.derby.iapi.services.context org.apache.derby.iapi.services.crypto org.apache.derby.iapi.services.daemon org.apache.derby.iapi.services.diag org.apache.derby.iapi.services.i18n org.apache.derby.iapi.services.info org.apache.derby.iapi.services.io org.apache.derby.iapi.services.jmx org.apache.derby.iapi.services.loader org.apache.derby.iapi.services.locks org.apache.derby.iapi.services.memory org.apache.derby.iapi.services.monitor org.apache.derby.iapi.services.property org.apache.derby.iapi.services.stream org.apache.derby.iapi.services.timer org.apache.derby.iapi.services.uuid org.apache.derby.iapi.sql org.apache.derby.iapi.sql.compile org.apache.derby.iapi.sql.conn org.apache.derby.iapi.sql.depend org.apache.derby.iapi.sql.dictionary org.apache.derby.iapi.sql.execute org.apache.derby.iapi.sql.execute.xplain org.apache.derby.iapi.store.access org.apache.derby.iapi.store.access.conglomerate org.apache.derby.iapi.store.access.xa org.apache.derby.iapi.store.raw org.apache.derby.iapi.store.raw.data org.apache.derby.iapi.store.raw.log org.apache.derby.iapi.store.raw.xact org.apache.derby.iapi.store.replication.master org.apache.derby.iapi.store.replication.slave org.apache.derby.iapi.tools.i18n org.apache.derby.iapi.types org.apache.derby.iapi.util org.apache.derby.impl.db org.apache.derby.impl.io org.apache.derby.impl.io.vfmem org.apache.derby.impl.jdbc org.apache.derby.impl.jdbc.authentication org.apache.derby.impl.load org.apache.derby.impl.services.bytecode org.apache.derby.impl.services.cache org.apache.derby.impl.services.daemon org.apache.derby.impl.services.jce org.apache.derby.impl.services.jmx org.apache.derby.impl.services.jmxnone org.apache.derby.impl.services.locks org.apache.derby.impl.services.monitor org.apache.derby.impl.services.reflect org.apache.derby.impl.services.stream org.apache.derby.impl.services.timer org.apache.derby.impl.services.uuid org.apache.derby.impl.sql org.apache.derby.impl.sql.catalog org.apache.derby.impl.sql.compile org.apache.derby.impl.sql.conn org.apache.derby.impl.sql.depend org.apache.derby.impl.sql.execute org.apache.derby.impl.sql.execute.rts org.apache.derby.impl.sql.execute.xplain org.apache.derby.impl.store.access org.apache.derby.impl.store.access.btree org.apache.derby.impl.store.access.btree.index org.apache.derby.impl.store.access.conglomerate org.apache.derby.impl.store.access.heap org.apache.derby.impl.store.access.sort org.apache.derby.impl.store.raw org.apache.derby.impl.store.raw.data org.apache.derby.impl.store.raw.log org.apache.derby.impl.store.raw.xact org.apache.derby.impl.store.replication org.apache.derby.impl.store.replication.buffer org.apache.derby.impl.store.replication.master org.apache.derby.impl.store.replication.net org.apache.derby.impl.store.replication.slave org.apache.derby.impl.tools.sysinfo org.apache.derby.io org.apache.derby.jdbc org.apache.derby.mbeans org.apache.derby.osgi org.apache.derby.security org.apache.derby.shared.common.error org.apache.derby.shared.common.sanity org.apache.derby.tools org.apache.derby.vti
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.7.1.1</version> </parent> <artifactId>derby</artifactId> <name>Apache Derby Database Engine and Embedded JDBC Driver</name> <description>Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.</description> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>package</phase> <configuration> <tasks> <copy file="${basedir}/../../jars/${sanity}/derby.jar" tofile="${basedir}/target/${project.build.finalName}.jar" overwrite="true"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> --> </plugins> </build> </project>