Skip to content

Commit a610069

Browse files
committed
#146 add EasyShell branding information
Signed-off-by: Andre Bossert <anb0s@anbos.de>
1 parent 60326e1 commit a610069

6 files changed

Lines changed: 116 additions & 111 deletions

File tree

feature/feature.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
id="de.anbos.eclipse.easyshell.feature"
44
label="EasyShell"
55
version="2.1.0.qualifier"
6-
provider-name="Andre Bossert">
6+
provider-name="Andre Bossert"
7+
plugin="de.anbos.eclipse.easyshell.plugin">
78

89
<description url="https://github.com/anb0s/EasyShell">
910
EasyShell - This Eclipse plugin allows to open a shell window or file manager from the popup menu in the navigation tree or editor view. Additionally it is possible to run selected file in the shell, copy file or directory path or run user defined external tools. Key shortcuts and multiple selections are also supported!

plugin/about.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
aboutText = EasyShell - Open a shell window or file manager or run external command from Eclipse.\nVisit https://github.com/anb0s/EasyShell
2+
featureImage = images/easyshell32.png
3+
appName = EasyShell

plugin/build.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ bin.includes = images/,\
44
target/easyshell-library.jar,\
55
src/de/anbos/eclipse/easyshell/plugin/UIMessages.properties,\
66
releases/,\
7-
scripts/
7+
scripts/,\
8+
about.ini
89
src.includes = images/,\
910
manpages/,\
1011
releases/CHANGES.TXT,\

plugin/images/easyshell100.png

2.6 KB
Loading

plugin/images/easyshell32.png

2.35 KB
Loading

pom.xml

Lines changed: 109 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -1,118 +1,118 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4-
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5-
<modelVersion>4.0.0</modelVersion>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>de.anbos.eclipse.easyshell.group</groupId>
8-
<artifactId>de.anbos.eclipse.easyshell</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
10-
<packaging>pom</packaging>
11-
<name>EasyShell</name>
7+
<groupId>de.anbos.eclipse.easyshell.group</groupId>
8+
<artifactId>de.anbos.eclipse.easyshell</artifactId>
9+
<version>2.1.0-SNAPSHOT</version>
10+
<packaging>pom</packaging>
11+
<name>EasyShell</name>
1212

13-
<modules>
14-
<module>platform</module>
15-
<module>plugin</module>
16-
<module>feature</module>
17-
<module>site</module>
18-
</modules>
13+
<modules>
14+
<module>platform</module>
15+
<module>plugin</module>
16+
<module>feature</module>
17+
<module>site</module>
18+
</modules>
1919

20-
<properties>
21-
<new.version>2.1.0-SNAPSHOT</new.version>
22-
<tycho.version>0.24.0</tycho.version>
23-
<target.platform>Eclipse-4.6</target.platform>
24-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25-
</properties>
20+
<properties>
21+
<new.version>2.1.0-SNAPSHOT</new.version>
22+
<tycho.version>0.24.0</tycho.version>
23+
<target.platform>Eclipse-4.6</target.platform>
24+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25+
</properties>
2626

27-
<!-- repositories> <repository> <id>Mars</id> <layout>p2</layout> <url>http://download.eclipse.org/releases/mars/</url>
28-
</repository> </repositories -->
27+
<!-- repositories> <repository> <id>Mars</id> <layout>p2</layout> <url>http://download.eclipse.org/releases/mars/</url>
28+
</repository> </repositories -->
2929

30-
<build>
31-
<plugins>
32-
<plugin>
33-
<groupId>org.eclipse.tycho</groupId>
34-
<artifactId>tycho-maven-plugin</artifactId>
35-
<version>${tycho.version}</version>
36-
<extensions>true</extensions>
37-
</plugin>
38-
<plugin>
39-
<groupId>org.eclipse.tycho</groupId>
40-
<artifactId>target-platform-configuration</artifactId>
41-
<version>${tycho.version}</version>
42-
<configuration>
43-
<target>
44-
<artifact>
45-
<groupId>de.anbos.eclipse.easyshell.group</groupId>
46-
<artifactId>de.anbos.eclipse.easyshell.platform</artifactId>
47-
<version>${project.version}</version>
48-
<classifier>${target.platform}</classifier>
49-
</artifact>
50-
</target>
51-
<environments>
52-
<environment>
53-
<os>linux</os>
54-
<ws>gtk</ws>
55-
<arch>x86</arch>
56-
</environment>
57-
<environment>
58-
<os>linux</os>
59-
<ws>gtk</ws>
60-
<arch>x86_64</arch>
61-
</environment>
62-
<environment>
63-
<os>win32</os>
64-
<ws>win32</ws>
65-
<arch>x86</arch>
66-
</environment>
67-
<environment>
68-
<os>win32</os>
69-
<ws>win32</ws>
70-
<arch>x86_64</arch>
71-
</environment>
72-
<environment>
73-
<os>macosx</os>
74-
<ws>cocoa</ws>
75-
<arch>x86_64</arch>
76-
</environment>
77-
</environments>
78-
</configuration>
79-
</plugin>
80-
<plugin>
81-
<groupId>org.eclipse.tycho</groupId>
82-
<artifactId>tycho-p2-plugin</artifactId>
83-
<version>${tycho.version}</version>
84-
<executions>
85-
<execution>
86-
<id>attach-p2-metadata</id>
87-
<phase>package</phase>
88-
<goals>
89-
<goal>p2-metadata</goal>
90-
</goals>
91-
</execution>
92-
</executions>
93-
</plugin>
94-
<plugin>
95-
<groupId>org.eclipse.tycho</groupId>
96-
<artifactId>tycho-packaging-plugin</artifactId>
97-
<version>${tycho.version}</version>
98-
<configuration>
99-
<format>'v'yyyyMMdd'-'HHmm</format>
100-
</configuration>
101-
</plugin>
102-
<plugin>
103-
<groupId>org.eclipse.tycho</groupId>
104-
<artifactId>tycho-versions-plugin</artifactId>
105-
<version>${tycho.version}</version>
106-
<configuration>
107-
<newVersion>${new.version}</newVersion>
108-
</configuration>
109-
</plugin>
110-
<plugin>
111-
<groupId>org.codehaus.mojo</groupId>
112-
<artifactId>build-helper-maven-plugin</artifactId>
113-
<version>1.10</version>
114-
</plugin>
115-
</plugins>
116-
</build>
30+
<build>
31+
<plugins>
32+
<plugin>
33+
<groupId>org.eclipse.tycho</groupId>
34+
<artifactId>tycho-maven-plugin</artifactId>
35+
<version>${tycho.version}</version>
36+
<extensions>true</extensions>
37+
</plugin>
38+
<plugin>
39+
<groupId>org.eclipse.tycho</groupId>
40+
<artifactId>target-platform-configuration</artifactId>
41+
<version>${tycho.version}</version>
42+
<configuration>
43+
<target>
44+
<artifact>
45+
<groupId>de.anbos.eclipse.easyshell.group</groupId>
46+
<artifactId>de.anbos.eclipse.easyshell.platform</artifactId>
47+
<version>${project.version}</version>
48+
<classifier>${target.platform}</classifier>
49+
</artifact>
50+
</target>
51+
<environments>
52+
<environment>
53+
<os>linux</os>
54+
<ws>gtk</ws>
55+
<arch>x86</arch>
56+
</environment>
57+
<environment>
58+
<os>linux</os>
59+
<ws>gtk</ws>
60+
<arch>x86_64</arch>
61+
</environment>
62+
<environment>
63+
<os>win32</os>
64+
<ws>win32</ws>
65+
<arch>x86</arch>
66+
</environment>
67+
<environment>
68+
<os>win32</os>
69+
<ws>win32</ws>
70+
<arch>x86_64</arch>
71+
</environment>
72+
<environment>
73+
<os>macosx</os>
74+
<ws>cocoa</ws>
75+
<arch>x86_64</arch>
76+
</environment>
77+
</environments>
78+
</configuration>
79+
</plugin>
80+
<plugin>
81+
<groupId>org.eclipse.tycho</groupId>
82+
<artifactId>tycho-p2-plugin</artifactId>
83+
<version>${tycho.version}</version>
84+
<executions>
85+
<execution>
86+
<id>attach-p2-metadata</id>
87+
<phase>package</phase>
88+
<goals>
89+
<goal>p2-metadata</goal>
90+
</goals>
91+
</execution>
92+
</executions>
93+
</plugin>
94+
<plugin>
95+
<groupId>org.eclipse.tycho</groupId>
96+
<artifactId>tycho-packaging-plugin</artifactId>
97+
<version>${tycho.version}</version>
98+
<configuration>
99+
<format>'v'yyyyMMdd'-'HHmm</format>
100+
</configuration>
101+
</plugin>
102+
<plugin>
103+
<groupId>org.eclipse.tycho</groupId>
104+
<artifactId>tycho-versions-plugin</artifactId>
105+
<version>${tycho.version}</version>
106+
<configuration>
107+
<newVersion>${new.version}</newVersion>
108+
</configuration>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.codehaus.mojo</groupId>
112+
<artifactId>build-helper-maven-plugin</artifactId>
113+
<version>1.10</version>
114+
</plugin>
115+
</plugins>
116+
</build>
117117

118118
</project>

0 commit comments

Comments
 (0)