Archived
0

Web API: взаимодействие с Database модулем

This commit is contained in:
2016-04-07 10:15:18 +03:00
parent df95b0e366
commit 160e1aeea3
5 changed files with 59 additions and 17 deletions

View File

@@ -7,7 +7,7 @@
<name>Web API</name>
<artifactId>web_api</artifactId>
<version>0.1-SNAPSHOT</version>
<version>0.2-SNAPSHOT</version>
<packaging>bundle</packaging>
<parent>
@@ -22,6 +22,11 @@
<artifactId>core</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>eu.arcadex.system</groupId>
<artifactId>database</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
@@ -47,7 +52,11 @@
<Bundle-Name>Arcadex System: ${name} ${version}</Bundle-Name>
<Bundle-SymbolicName>${groupId}.${artifactId}</Bundle-SymbolicName>
<Bundle-Activator>eu.arcadex.system.web_api.Activator</Bundle-Activator>
<Import-Package>eu.arcadex.system.core.api, *</Import-Package>
<Import-Package>
eu.arcadex.system.core.api,
eu.arcadex.system.database.api,
*
</Import-Package>
</instructions>
</configuration>
</plugin>