-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
243 lines (236 loc) · 9.61 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2014 Michael Koppen.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>
<groupId>de.yser</groupId>
<artifactId>TabSwitch</artifactId>
<version>0.3-SNAPSHOT</version>
<packaging>nbm</packaging>
<name>TabSwitch</name>
<url>https://github.com/Yserz/TabSwitch</url>
<inceptionYear>2014</inceptionYear>
<description><![CDATA[
<b>TabSwitch allows you to switch the editor-tabs in the NetBeans© IDE the way Google Chrome © and XtraFinder© do.</b>
One could say NetBeans already provides this kind of functionality but in distinction to the build-in feature of the NetBeans IDE, TabSwitch does not loose the context of the project.
So if you use for example the tab-row-per-project-feature TabSwitch will not suddenly jump between different tab-rows like the build-in NetBeans IDE feature does.
<p>
<img src="https://raw.github.com/Yserz/TabSwitch/master/doc/TabSwitchTabs.gif" />
</p>
<p>To switch to the left tab from the currently active one simply use:
<ul>
<li>⌥ + ⌘ + ← for Mac OS X,</li>
<li>Alt + Ctrl + ← for Windows & Linux or</li>
<li>Click on Navigate -> TabSwitch Left.</li>
</ul>
To switch to the right tab simply use:
<ul>
<li>⌥ + ⌘ + ➝ for Mac OS X,</li>
<li>Alt + Ctrl + ➝ for Windows & Linux or</li>
<li>Click on Navigate -> TabSwitch Right.</li>
</ul></p>
]]>
</description>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>Michael Koppen</name>
</organization>
<developers>
<developer>
<name>Michael Koppen</name>
<email>[email protected]</email>
<url>https://github.com/Yserz/</url>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:Yserz/TabSwitch.git</connection>
<developerConnection>scm:git:[email protected]:Yserz/TabSwitch.git</developerConnection>
<url>https://github.com/Yserz/TabSwitch</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issue Management</system>
<url>https://github.com/Yserz/TabSwitch/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<nbm.signing.keystorepassword>password</nbm.signing.keystorepassword>
<nbm.skip>false</nbm.skip>
<nb.version>RELEASE82</nb.version>
</properties>
<repositories>
<repository>
<id>netbeans</id>
<name>Repository hosting NetBeans modules</name>
<url>http://bits.netbeans.org/nexus/content/groups/netbeans</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-api-annotations-common</artifactId>
<version>${nb.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-windows</artifactId>
<version>${nb.version}</version>
<type>jar</type>
</dependency>
<dependency>
<artifactId>org-openide-filesystems</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>${nb.version}</version>
</dependency>
<dependency>
<artifactId>org-openide-nodes</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>${nb.version}</version>
</dependency>
<dependency>
<artifactId>org-openide-util</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>${nb.version}</version>
</dependency>
<dependency>
<artifactId>org-openide-util-lookup</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>${nb.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-awt</artifactId>
<version>${nb.version}</version>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-modules-projectapi</artifactId>
<version>${nb.version}</version>
<type>jar</type>
</dependency>
<dependency>
<artifactId>org-openide-loaders</artifactId>
<groupId>org.netbeans.api</groupId>
<type>jar</type>
<version>${nb.version}</version>
</dependency>
<!-- TEST -->
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-netbeans-libs-junit4</artifactId>
<version>${nb.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>4.1</version>
<extensions>true</extensions>
<configuration>
<skipNbm>${nbm.skip}</skipNbm>
<keystore>../certificate/keystore.jks</keystore>
<keystorealias>yser</keystorealias>
<keystorepassword>${nbm.signing.keystorepassword}</keystorepassword>
<licenseName>Apache License 2.0</licenseName>
<licenseFile>LICENSE.txt</licenseFile>
<requiresRestart>false</requiresRestart>
<publicPackages>
<publicPackage>de.yser.tabswitch</publicPackage>
</publicPackages>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<useDefaultManifestFile>true</useDefaultManifestFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<arguments>-Dnbm.signing.keystorepassword=${nbm.signing.keystorepassword}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<!-- add sources.jar to (snapshot) release -->
<execution>
<id>attach-sources</id>
<phase>compile</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<!-- add javadoc.jar to (snapshot) release -->
<execution>
<id>attach-javadocs</id>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.5</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
</plugins>
</build>
</project>