Archive
How to do upgrade maven in Mac OS X?
[How to] Add jar to mvn dependency without installing
<dependency>
<groupId>groupId here</groupId>
<artifactId>artifactId here</artifactId>
<version>version here</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/my_lib-1.0-SNAPSHOT.jar</systemPath>
</dependency>
[MVN] How do I add resources to my JAR?
How do I add resources to my JAR?
${basedir}/src/main/resources directory are packaged in your JAR with the exact same structure starting at the base of the JAR.
[Link] Posting Source Code in WordPress
[ sourcecode language=”css” ]
your code here
[ /sourcecode ]
The language parameter controls how the code is syntax highlighted. The following languages are supported:
actionscript3
bash
coldfusion
cpp
csharp
css
delphi
erlang
fsharp
diff
groovy
html
javascript
java
javafx
matlab (keywords only)
objc
perl
php
text
powershell
python
r
ruby
scala
sql
vb
xml
If the language parameter is not set, it will default to “text” (no syntax highlighting).
[How to] make run maven proguard plug-in on OS X
...
<plugin>
<executions>
<execution>
<configuration>
<libs>
<lib>${java.home}/lib/rt.jar</lib>
</libs>
</configuration>
</execution>
</executions>
</plugin>
...
Windows platform.
...
<plugin>
<executions>
<execution>
<configuration>
<libs>
<lib>${java.home}/bundle/Classes/classes.jar</lib>
</libs>
</configuration>
</execution>
</executions>
</plugin>
...
Mac OS X platform.
[Link] Android Application Development with Maven
[Link] Maven: The Complete Reference
[How to] Revert to a previous reversion.
$ svn update -r [REVERSION NUMBER] . $ svn update -r [REVERSION NUMBER] [FILENAME]
Exactly, It’s “UPDATE to older revision”.
$ svn merge -r [REVERSION NUMBER] . $ svn merge -r [REVERSION NUMBER] [FILENAME]
Two NetBeans Keyboard Shortcuts That Will Change Your Life (Forever)
ctrl + ;
ctrl + shift + ;
That’s all.
Detail – Two NetBeans Keyboard Shortcuts That Will Change Your Life (Forever)
try also “shift + enter”.
Double integration between Chrome and Delicious
Right click on the address bar and select edit search engines. Click on add to create a new engine and add the following values, obviously replacing USERNAME with your Delicious username.
- Name: Delicious
- Keyword: dl
- Url: http://delicious.com/search?p=%s&chk=&fr=del_icio_us&lc=1&atags=&rtags=&context=userposts|USERNAME|
Click on ok and you’re done!
http://blog.andreaolivato.net/open-source/double-integration-between-chrome-and-delicious.html