test_server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.sila-standard.sila_java.servers</groupId>
<artifactId>test_server</artifactId>
<version>0.0.2</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.sila-standard.sila_java</groupId>
<artifactId>servers</artifactId>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.sila-standard.sila_java.servers</groupId>
<artifactId>test_server</artifactId>
<version>0.0.2</version>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.sila-standard.sila_java.library</groupId>
<artifactId>maven_plugin</artifactId>
<version>0.0.2</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<protobufVersion>${protobuf.version}</protobufVersion>
<grpcVersion>${grpc.version}</grpcVersion>
<features>
<param>src/main/resources/features/UnobservablePropertyTest.xml</param>
<param>src/main/resources/features/ObservablePropertyTest.xml</param>
<param>src/main/resources/features/UnobservableCommandTest.xml</param>
<param>src/main/resources/features/ObservableCommandTest.xml</param>
</features>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>sila_java.servers.test_server.TestServer</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>