Skip to content

Instantly share code, notes, and snippets.

View SimonScholz's full-sized avatar
🎯
Focusing

Simon Scholz SimonScholz

🎯
Focusing
View GitHub Profile
package com.example.e4.rcp.todo.services.internal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Collectors;
import com.example.e4.rcp.todo.model.ITodoService;
package com.example.e4.rcp.todo.parts;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.inject.Inject;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
@SimonScholz
SimonScholz / product
Created January 29, 2015 20:19
Product pom
<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>
<parent>
<groupId>com.example.e4.rcp</groupId>
<artifactId>com.example.todo.build.parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../com.example.todo.build.parent</relativePath>
</parent>
@SimonScholz
SimonScholz / todo
Created January 29, 2015 19:49
Todo project pom
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.example.e4.rcp</groupId>
<artifactId>com.example.todo.build.parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../com.example.todo.build.parent</relativePath>
@SimonScholz
SimonScholz / aggregator
Last active August 29, 2015 14:14
Aggregator pom
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.example.e4.rcp</groupId>
<artifactId>com.example.todo.build.parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../com.example.todo.build.parent</relativePath>
@SimonScholz
SimonScholz / parent
Last active August 29, 2015 14:14
Parent pom
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.e4.rcp</groupId>
<artifactId>com.example.build.parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>