1 Star 0 Fork 0

need/fluentmark

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
pom.xml 3.76 KB
Copy Edit Raw Blame History
gbr authored 2021-04-20 16:17 . Fix live view handler for linux.
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>net.certiv</groupId>
<artifactId>net.certiv.fluent.dt</artifactId>
<version>1.6.4-SNAPSHOT</version>
<name>FluentMark :: parent</name>
<description>FluentMark parent</description>
<organization>
<name>Certiv Analytics</name>
<url>www.certiv.net</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<tycho.version>2.0.0</tycho.version>
<eclipse-repo.url>http://download.eclipse.org/releases/2021-03</eclipse-repo.url>
<certiv-repo.url>file:/D:/DevFiles/Eclipse/Tools/Dsl/net.certiv.dsl/net.certiv.dsl.site/target/repository</certiv-repo.url>
<spellcheck.url>file:/D:/DevFiles/Eclipse/Tools/Dsl/net.certiv.spellchecker/site/target/repository</spellcheck.url>
</properties>
<repositories>
<repository>
<id>eclipse</id>
<layout>p2</layout>
<url>${eclipse-repo.url}</url>
</repository>
<repository>
<id>certiv</id>
<layout>p2</layout>
<url>${certiv-repo.url}</url>
</repository>
<repository>
<id>spellcheck</id>
<layout>p2</layout>
<url>${spellcheck.url}</url>
</repository>
</repositories>
<modules>
<module>net.certiv.fluent.dt.core</module>
<module>net.certiv.fluent.dt.ui</module>
<module>net.certiv.fluent.dt.vis</module>
<module>net.certiv.fluent.dt.feature</module>
<module>net.certiv.fluent.dt.site</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
<configuration>
<encoding>UTF-8</encoding>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho.version}</version>
<configuration>
<includePackedArtifacts>true</includePackedArtifacts>
<dependency-resolution>
<optionalDependencies>require</optionalDependencies>
</dependency-resolution>
<environments>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<compilerArgs>
<arg>-warn:-raw,unchecked</arg>
</compilerArgs>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tycho.version}</version>
<configuration>
<format>yyyyMMdd-HHmm</format>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>macosx</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<properties>
<tycho.test.platformArgs>-XstartOnFirstThread</tycho.test.platformArgs>
</properties>
</profile>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/humphrey-gao/fluentmark.git
git@gitee.com:humphrey-gao/fluentmark.git
humphrey-gao
fluentmark
fluentmark
master

Search

0d507c66 1850385 C8b1a773 1850385