Skip to content

Commit 9a63788

Browse files
committed
better home
1 parent 75c273c commit 9a63788

File tree

44 files changed

+77
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+77
-79
lines changed

src/main/groovy/com/github/hauner/openapi/core/writer/ApiWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/ApiWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import com.github.hauner.openapi.core.converter.ApiOptions
2020
import com.github.hauner.openapi.core.model.Api

src/main/groovy/com/github/hauner/openapi/core/writer/BeanValidationFactory.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/BeanValidationFactory.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import com.github.hauner.openapi.core.model.datatypes.ArrayDataType
2020
import com.github.hauner.openapi.core.model.datatypes.CollectionDataType

src/main/groovy/com/github/hauner/openapi/core/writer/DataTypeWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/DataTypeWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import com.github.hauner.openapi.core.converter.ApiOptions
2020
import com.github.hauner.openapi.core.model.datatypes.ObjectDataType

src/main/groovy/com/github/hauner/openapi/core/writer/ImportFilter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/ImportFilter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
/**
2020
* Removes imports from the list of import that are not needed.

src/main/groovy/com/github/hauner/openapi/core/writer/InterfaceWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/InterfaceWriter.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import com.github.hauner.openapi.core.framework.FrameworkAnnotations
2020
import com.github.hauner.openapi.core.converter.ApiOptions
@@ -94,4 +94,5 @@ class InterfaceWriter {
9494
.filter (packageName, imports)
9595
.sort ()
9696
}
97+
9798
}

src/main/groovy/com/github/hauner/openapi/core/writer/MappingAnnotationWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/MappingAnnotationWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import com.github.hauner.openapi.core.model.Endpoint
2020
import com.github.hauner.openapi.core.model.EndpointResponse

src/main/groovy/com/github/hauner/openapi/core/writer/MethodWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/MethodWriter.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import com.github.hauner.openapi.core.model.parameters.Parameter
20-
import com.github.hauner.openapi.core.writer.MappingAnnotationWriter as CoreMappingAnnotationWriter
21-
import com.github.hauner.openapi.core.writer.ParameterAnnotationWriter as CoreParameterAnnotationWriter
20+
import com.github.hauner.openapi.core.writer.java.MappingAnnotationWriter as CoreMappingAnnotationWriter
21+
import com.github.hauner.openapi.core.writer.java.ParameterAnnotationWriter as CoreParameterAnnotationWriter
2222
import com.github.hauner.openapi.core.converter.ApiOptions
2323
import com.github.hauner.openapi.core.model.Endpoint
2424
import com.github.hauner.openapi.core.model.EndpointResponse

src/main/groovy/com/github/hauner/openapi/core/writer/ParameterAnnotationWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/ParameterAnnotationWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer;
17+
package com.github.hauner.openapi.core.writer.java;
1818

1919
import com.github.hauner.openapi.core.model.parameters.Parameter;
2020

src/main/groovy/com/github/hauner/openapi/core/writer/PathWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/PathWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
import java.nio.file.Files
2020
import java.nio.file.Path

src/main/groovy/com/github/hauner/openapi/core/writer/SimpleWriter.groovy renamed to src/main/groovy/com/github/hauner/openapi/core/writer/java/SimpleWriter.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.github.hauner.openapi.core.writer
17+
package com.github.hauner.openapi.core.writer.java
1818

1919
/**
2020
* basic writer interface.

0 commit comments

Comments
 (0)