Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
svenruppert committed Jul 5, 2019
1 parent 37b3e08 commit 9ce1073
Show file tree
Hide file tree
Showing 286 changed files with 11,432 additions and 2,553 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
_data/_apidoc


# Created by .ignore support plugin (hsz.mobi)
### Eclipse template
*.pydevproject
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ from [github.com/ProxyBuilder/proxybuilder](https://github.com/ProxyBuilder/prox
If you want to have an overview of the Proxy-Pattern itself I can recommend
the following sources.

[JavaOne 2015 Tutorial - Proxy DeepDive](de.slideshare.net/svenruppert/proxy-deepdive-javaone20151027001)
[JavaOne 2015 Tutorial - Proxy DeepDive](https://de.slideshare.net/svenruppert/proxy-deepdive-javaone20151027001)

## What goal we want to reach?
This project was born, because I had to work a lot with old huge projects. The only thing I could rely on, is the pure JDK.
Expand Down
75 changes: 0 additions & 75 deletions bom/pom.xml

This file was deleted.

53 changes: 53 additions & 0 deletions impl/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2013 Sven Ruppert (sven.ruppert@gmail.com)
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">
<parent>
<groupId>org.rapidpm.proxybuilder</groupId>
<artifactId>rapidpm-proxybuilder</artifactId>
<version>00.09.05-RPM-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>rapidpm-proxybuilder-impl</artifactId>


<dependencies>
<dependency>
<groupId>net.oneandone.reflections8</groupId>
<artifactId>reflections8</artifactId>
<version>0.11.4</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-Xlint:all</compilerArgument>
<compilerArgument>-proc:none</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 9ce1073

Please sign in to comment.