Skip to content

Commit 9cc83c9

Browse files
committed
Add feature with privacy policy text
1 parent f83b2e7 commit 9cc83c9

File tree

6 files changed

+61
-0
lines changed

6 files changed

+61
-0
lines changed

kotlin-eclipse-feature/feature.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ See the License for the specific language governing permissions and
2929
limitations under the License.
3030
</license>
3131

32+
<includes
33+
id="org.jetbrains.kotlin.policy"
34+
version="0.0.0"/>
35+
3236
<plugin
3337
id="org.jetbrains.kotlin.bundled-compiler"
3438
download-size="0"

kotlin-eclipse-policy/.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>kotlin-eclipse-policy</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.pde.FeatureBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.pde.FeatureNature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bin.includes = feature.xml

kotlin-eclipse-policy/feature.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feature
3+
id="org.jetbrains.kotlin.policy"
4+
label="kotlin-eclipse-policy"
5+
version="0.5.1.qualifier"
6+
provider-name="JetBrains">
7+
8+
<copyright url="http://www.jetbrains.com/">
9+
Copyright 2010-2016 JetBrains s.r.o.
10+
</copyright>
11+
12+
<license url="https://www.jetbrains.com/company/privacy.html">
13+
JetBrains Privacy Policy
14+
15+
This software is governed by JetBrains Privacy Policy.
16+
https://www.jetbrains.com/company/privacy.html
17+
</license>
18+
19+
</feature>

kotlin-eclipse-policy/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<relativePath>../pom.xml</relativePath>
9+
<groupId>kotlin.eclipse</groupId>
10+
<artifactId>kotlin.eclipse.plugin</artifactId>
11+
<version>0.5.1-SNAPSHOT</version>
12+
</parent>
13+
14+
<artifactId>org.jetbrains.kotlin.policy</artifactId>
15+
<groupId>kotlin.eclipse</groupId>
16+
<version>0.5.1-SNAPSHOT</version>
17+
<packaging>eclipse-feature</packaging>
18+
19+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<module>kotlin-eclipse-ui</module>
1313
<module>kotlin-eclipse-ui-test</module>
1414
<module>kotlin-eclipse-test-framework</module>
15+
<module>kotlin-eclipse-policy</module>
1516
<module>kotlin-eclipse-feature</module>
1617
<module>kotlin-eclipse-p2updatesite</module>
1718
<module>kotlin-eclipse-maven</module>

0 commit comments

Comments
 (0)