I have the necessity to connect my SCOUT
application build with the last version of this framework with my Oracle Database
, which is the correct dependency that I need to add in the pom.xml
?
For the moment I add only the following
<dependencies>
<dependency>
<artifactId>org.eclipse.scout.rt.server</artifactId>
<groupId>org.eclipse.scout.rt</groupId>
</dependency>
<dependency>
<groupId>org.zeiss.mo.scout.czvedicontroller</groupId>
<artifactId>cxvedicontroller.shared</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.scout.rt</groupId>
<artifactId>org.eclipse.scout.rt.server.test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.scout.rt</groupId>
<artifactId>org.eclipse.scout.rt.server.jdbc</artifactId>
</dependency>
</dependencies>
</project>
Thanks in advance for the hint