| | |
| | | </parent> |
| | | |
| | | <properties> |
| | | <maven.compiler.source>8</maven.compiler.source> |
| | | <maven.compiler.target>8</maven.compiler.target> |
| | | <maven.compiler.source>17</maven.compiler.source> |
| | | <maven.compiler.target>17</maven.compiler.target> |
| | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| | | <integration.version>3.4.3</integration.version> |
| | | <druid.version>1.2.20</druid.version> |
| | | <mybatis-plus.version>3.5.6</mybatis-plus.version> |
| | | <influxdb-client.version>6.6.0</influxdb-client.version> |
| | | <milo.version>0.6.13</milo.version> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | |
| | | <version>26.0.2</version> |
| | | <scope>compile</scope> |
| | | </dependency> |
| | | <!-- Eclipse Milo OPC UA 客户端 --> |
| | | <dependency> |
| | | <groupId>org.eclipse.milo</groupId> |
| | | <artifactId>sdk-client</artifactId> |
| | | <version>${milo.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.eclipse.milo</groupId> |
| | | <artifactId>stack-core</artifactId> |
| | | <version>${milo.version}</version> |
| | | </dependency> |
| | | </dependencies> |
| | | <profiles> |
| | | <profile> |
| | | <id>dev</id> |
| | | <properties> |
| | | <build.profile.id>dev</build.profile.id> |
| | | <profileActive>dev</profileActive> |
| | | </properties> |
| | | <activation> |
| | | <activeByDefault>true</activeByDefault> |
| | | </activation> |
| | | </profile> |
| | | <profile> |
| | | <id>prod</id> |
| | | <properties> |
| | | <build.profile.id>prod</build.profile.id> |
| | | <profileActive>prod</profileActive> |
| | | </properties> |
| | | </profile> |
| | | </profiles> |
| | | |
| | | <repositories> |
| | | <repository> |
| | |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <configuration> |
| | | <source>9</source> |
| | | <target>9</target> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | <finalName>${project.artifactId}</finalName> |
| | | </build> |