| 
3 | 3 |   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  | 
4 | 4 |   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  | 
5 | 5 |   <modelVersion>4.0.0</modelVersion>  | 
6 |  | -  <artifactId>rest-api</artifactId>  | 
7 |  | -  <version>0.1.0</version>  | 
8 |  | -  <packaging>jar</packaging>  | 
9 | 6 | 
 
  | 
10 | 7 |   <parent>  | 
11 | 8 |     <groupId>life.qbic</groupId>  | 
12 | 9 |     <artifactId>data-access-server</artifactId>  | 
13 | 10 |     <version>0.1.0</version>  | 
14 | 11 |   </parent>  | 
15 | 12 | 
 
  | 
16 |  | -  <properties>  | 
17 |  | -    <maven.compiler.source>21</maven.compiler.source>  | 
18 |  | -    <maven.compiler.target>21</maven.compiler.target>  | 
19 |  | -    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  | 
20 |  | -    <spring.boot.version>3.2.3</spring.boot.version>  | 
21 |  | -  </properties>  | 
 | 13 | +  <groupId>life.qbic.data-access</groupId>  | 
 | 14 | +  <artifactId>rest-server</artifactId>  | 
 | 15 | +  <version>0.1.0</version>  | 
 | 16 | +  <packaging>jar</packaging>  | 
 | 17 | + | 
22 | 18 | 
 
  | 
23 | 19 |   <dependencyManagement>  | 
24 | 20 |     <dependencies>  | 
 | 
48 | 44 |       <version>2.3.0</version>  | 
49 | 45 |     </dependency>  | 
50 | 46 |     <dependency>  | 
51 |  | -      <groupId>life.qbic</groupId>  | 
 | 47 | +      <groupId>life.qbic.data-access</groupId>  | 
52 | 48 |       <artifactId>measurement-provider</artifactId>  | 
53 | 49 |       <version>0.1.0</version>  | 
54 | 50 |     </dependency>  | 
55 | 51 |     <dependency>  | 
56 |  | -      <groupId>life.qbic</groupId>  | 
 | 52 | +      <groupId>life.qbic.data-access</groupId>  | 
57 | 53 |       <artifactId>openbis-connector</artifactId>  | 
58 | 54 |       <version>0.1.0</version>  | 
59 | 55 |     </dependency>  | 
60 | 56 |     <dependency>  | 
61 |  | -      <groupId>life.qbic</groupId>  | 
 | 57 | +      <groupId>life.qbic.data-access</groupId>  | 
62 | 58 |       <artifactId>zip</artifactId>  | 
63 | 59 |       <version>0.1.0</version>  | 
64 | 60 |     </dependency>  | 
 | 
70 | 66 |         <groupId>org.springframework.boot</groupId>  | 
71 | 67 |         <artifactId>spring-boot-maven-plugin</artifactId>  | 
72 | 68 |         <version>${spring.boot.version}</version>  | 
 | 69 | +        <configuration>  | 
 | 70 | +          <mainClass>life.qbic.data_access.rest.DataAccessRestServer</mainClass>  | 
 | 71 | +        </configuration>  | 
 | 72 | +        <executions>  | 
 | 73 | +          <execution>  | 
 | 74 | +            <goals>  | 
 | 75 | +              <goal>repackage</goal>  | 
 | 76 | +            </goals>  | 
 | 77 | +          </execution>  | 
 | 78 | +        </executions>  | 
73 | 79 |       </plugin>  | 
74 | 80 |     </plugins>  | 
75 | 81 |   </build>  | 
 | 
0 commit comments