forked from devonfw/cobigen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generating platform definition based on local plugins build.
- Loading branch information
Showing
20 changed files
with
203 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.devonfw.cobigen</groupId> | ||
<artifactId>eclipse-parent</artifactId> | ||
<version>${revision}</version> | ||
</parent> | ||
<artifactId>cobigen-eclipse-releng</artifactId> | ||
<packaging>eclipse-target-definition</packaging> | ||
|
||
<properties> | ||
<projectDir>${basedir}</projectDir> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.3.1</version> | ||
<executions> | ||
<execution> | ||
<id>setup-targlet</id> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<outputDirectory>${basedir}</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
29 changes: 29 additions & 0 deletions
29
cobigen-eclipse/cobigen-eclipse-releng/src/main/resources/cobigen-eclipse-releng.target
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?pde version="3.8"?> | ||
<target name="Eclipse 2018-12" sequenceNumber="51"> | ||
<locations> | ||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="false" type="InstallableUnit"> | ||
<repository location="http://download.eclipse.org/technology/swtbot/releases/latest/"/> | ||
<unit id="org.eclipse.swtbot.eclipse.test.junit.feature.group" version="4.0.0.202206011610"/> | ||
<unit id="org.eclipse.swtbot.feature.group" version="4.0.0.202206011610"/> | ||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="4.0.0.202206011610"/> | ||
</location> | ||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="false" type="InstallableUnit"> | ||
<repository location="https://download.eclipse.org/releases/2018-12/"/> | ||
<unit id="org.eclipse.sdk.ide" version="0.0.0"/> | ||
<unit id="org.eclipse.equinox.sdk.feature.group" version="0.0.0"/> | ||
<unit id="org.eclipse.jdt.feature.group" version="0.0.0"/> | ||
<unit id="org.eclipse.m2e.feature.feature.group" version="0.0.0"/> | ||
</location> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-javaplugin-parent/cobigen-javaplugin/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-openapiplugin-parent/cobigen-openapiplugin/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-xmlplugin/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-jsonplugin/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-htmlplugin/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-propertyplugin/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-textmerger/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-templateengines/cobigen-tempeng-velocity/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-templateengines/cobigen-tempeng-freemarker/target/repository" type="Directory"/> | ||
<location path="${projectDir}/../../cobigen-plugins/cobigen-tsplugin/target/repository" type="Directory"/> | ||
</locations> | ||
</target> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.