Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exercise results #6

Open
wants to merge 48 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
1eac542
Uitwerking Koenen Kramers Workshop
rodmidde Sep 24, 2014
3481d6d
Uitwerking BolAnimatie
rodmidde Sep 24, 2014
896d5a7
Uitwerking KleurenMenger
rodmidde Sep 24, 2014
4f92ff8
Uitwerking KleurenMenger
rodmidde Sep 24, 2014
b8e77ec
Uitwerking KleurenMenger
rodmidde Sep 24, 2014
f0df8b1
Update README.md
rodmidde Sep 24, 2014
9ef680f
Update README.md
rodmidde Sep 24, 2014
bf2ec84
Update README.md
rodmidde Sep 24, 2014
3c0c9d0
Example Maven build file for .NET projects
rodmidde Nov 7, 2014
f75b074
Merge branch 'exercise-results' of https://github.com/ddoa/dea-code-e…
rodmidde Nov 7, 2014
2cf6b72
Uitwerking RMI terugteller workshop
rodmidde Feb 12, 2015
a2e3248
Changed SOLID Examples
rodmidde Feb 24, 2015
17990e0
New SOLID examples based on PluralSight video's
rodmidde Feb 24, 2015
3604054
Added class diagram
rodmidde Mar 5, 2015
de0215a
Moved files to separate directory
rodmidde Apr 20, 2015
a6293df
Moved files to separate directory
rodmidde Apr 20, 2015
cf99fda
Simple REST application using Jersey
rodmidde Jun 16, 2015
f42abed
Merge remote-tracking branch 'origin/exercise-results' into exercise-…
rodmidde Jun 16, 2015
3084b7d
Simple JSP/Servlet implementation of PageController pattern
rodmidde Jun 16, 2015
70d799c
Example results of exercise using JAX RS, Jersey and Jackson
rodmidde Jun 17, 2015
5c84138
Example results of JDBC exercise
rodmidde Jun 17, 2015
4c5b4bc
Example results of simple Guice exercise
rodmidde Jun 18, 2015
bfe48b5
Create README.md
rodmidde Jun 18, 2015
8823867
Update README.md
rodmidde Jun 18, 2015
e2de01c
Update README.md
rodmidde Jun 18, 2015
2456a9f
Example results of Guice in Java EE exercise
rodmidde Jun 18, 2015
69697b7
Merge remote-tracking branch 'origin/exercise-results' into exercise-…
rodmidde Jun 18, 2015
ab766bb
Example results of JPA Exercise
rodmidde Jun 21, 2015
dcb0855
Preparedstatement in favour of a ordinary statement
rodmidde Jun 27, 2015
94fe42e
Unittest using H2 in memory database
rodmidde Jun 29, 2015
4664193
Restructured repo
rodmidde Jun 30, 2015
052ad60
Restructured repo
rodmidde Jun 30, 2015
c559abd
Restructured repo
rodmidde Jun 30, 2015
820e423
Restructured repo
rodmidde Jun 30, 2015
a925c16
Example results of Amdahl exercise. Watch the testcases and exception…
rodmidde Jun 30, 2015
bc81e92
Example results of sorter exercise. Shows a bit more features and a w…
rodmidde Jun 30, 2015
3e6c41a
Refactored code to separate start/stop methods and a setter for Anima…
rodmidde Sep 9, 2015
4564dc1
Refactored code to separate start/stop methods and a setter for Anima…
rodmidde Sep 9, 2015
8b13d52
Added minimal paddle/bat implementation
rodmidde Sep 9, 2015
ca05f14
Standard pom.xml for BolAnimatie
rodmidde Sep 21, 2015
e6ebfed
Example results of CourseViewer exercise
rodmidde Sep 21, 2015
2681451
Added JAXB dependency which is necessary when ran in Glassfish instea…
rodmidde Oct 2, 2015
51b8b9b
Added Guice Provider as alternative for custom CartFactory
rodmidde Oct 6, 2015
b2e2600
Results from exercise. Used Guice instead of Spring.
rodmidde Oct 11, 2015
cd6dabd
Uitwerking videostore met JUnit4
rodmidde Sep 26, 2016
7156b87
Uitwerking aangepast door sourcecode dictionaries weg te halen en Mav…
rodmidde Sep 27, 2016
dcced9a
Exercise results for the CDI exercise
rodmidde Feb 4, 2017
cd499c4
Exercise results of JAX-RS exercise
rodmidde Feb 4, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added archive/j2ee/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
103 changes: 103 additions & 0 deletions examples/android-deckard-unittest/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
<artifactId>deckard</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>apk</packaging>
<name>Deckard</name>
<description>Who is the replicant here?</description>

<repositories>
<repository>
<id>robojuice</id>
<url>http://repo1.maven.org/maven2/org/roboguice/roboguice/</url>
</repository>
</repositories>
<dependencies>

<!--main-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>

<!--android & robolectric-->
<dependency>
<groupId>org.robolectric</groupId>
<artifactId>robolectric</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>android</groupId>
<artifactId>android</artifactId>
<version>4.3_r2</version>
<scope>provided</scope>
</dependency>

<!-- robojuice for DI -->
<dependency>
<groupId>org.roboguice</groupId>
<artifactId>roboguice</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>3.0</version>
<classifier>no_aop</classifier>
</dependency>

</dependencies>

<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<sdk>
<!-- platform or api level (api level 4 = platform 1.6)-->
<platform>18</platform>
</sdk>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<excludes>
<exclude>**/Test*.java</exclude>
</excludes>
<argLine>-Xmx1024m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
Binary file added examples/designpatterns/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions examples/designpatterns/adapter/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions examples/designpatterns/adapter/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading