Archive

Archive for July, 2012

Maven execute .jar

pom.xml:

<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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

  <groupId>com.test</groupId>
  <version>1.0.0</version>
  <artifactId>MavenExec</artifactId>
  <packaging>pom</packaging>

  	<build>
            <plugins>
		<plugin>
			<groupId>org.codehaus.mojo</groupId>
			<artifactId>exec-maven-plugin</artifactId>
			<version>1.1.1</version>
			<executions>
				<execution>
					<phase>test</phase>
					<goals>
						<goal>exec</goal>
					</goals>
				</execution>
			</executions>
			<configuration>
				<executable>java</executable>
				<arguments>
					<argument>-jar</argument>
					<argument>test.jar</argument>
				</arguments>
			</configuration>
		</plugin>
	     </plugins>
	</build>
</project>
mvn exec:exec

Install Subversion (svn) on Windows

  • Choose a vendor from the list e.g. slik subversion and download the binary package.
  • install the binary
  • the global Subversion client config file on Windows XP can be found under:
C:\Documents and Settings\%USERNAME%\Application Data\Subversion\config
  • the global Subversion client config file on Windows Vista / 7 can be found under:
C:\Users\%USERNAME%\AppData\Roaming\Subversion\config
Categories: Software Engineering

LibreOffice backup folder on MacOS X – recovering files

/Users/<user name>/Library/Application Support/OpenOffice.org/3/user/backup
Categories: Mac OS X

Wireframe structure for iPhone iOS 4/5

Here you can find a wireframe structure for the iPhone.

Categories: Development, Prototyping