Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
15527595
Commit
15527595
authored
Feb 04, 2014
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix package tangle by moving AsciiBytes
parent
f7d4490b
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
15 additions
and
11 deletions
+15
-11
JarLauncher.java
...ain/java/org/springframework/boot/loader/JarLauncher.java
+1
-0
PropertiesLauncher.java
...a/org/springframework/boot/loader/PropertiesLauncher.java
+1
-0
WarLauncher.java
...ain/java/org/springframework/boot/loader/WarLauncher.java
+1
-0
Archive.java
...java/org/springframework/boot/loader/archive/Archive.java
+1
-1
ExplodedArchive.java
.../springframework/boot/loader/archive/ExplodedArchive.java
+1
-1
FilteredArchive.java
.../springframework/boot/loader/archive/FilteredArchive.java
+1
-1
JarFileArchive.java
...g/springframework/boot/loader/archive/JarFileArchive.java
+1
-1
JarEntryData.java
...ava/org/springframework/boot/loader/jar/JarEntryData.java
+1
-1
JarEntryFilter.java
...a/org/springframework/boot/loader/jar/JarEntryFilter.java
+1
-1
JarFile.java
...ain/java/org/springframework/boot/loader/jar/JarFile.java
+1
-1
AsciiBytes.java
...java/org/springframework/boot/loader/util/AsciiBytes.java
+1
-1
AsciiBytesTests.java
...java/org/springframework/boot/loader/AsciiBytesTests.java
+1
-0
ExplodedArchiveTests.java
...ngframework/boot/loader/archive/ExplodedArchiveTests.java
+1
-1
JarFileArchiveTests.java
...ingframework/boot/loader/archive/JarFileArchiveTests.java
+1
-1
JarFileTests.java
...ava/org/springframework/boot/loader/jar/JarFileTests.java
+1
-1
No files found.
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/JarLauncher.java
View file @
15527595
...
...
@@ -19,6 +19,7 @@ package org.springframework.boot.loader;
import
java.util.List
;
import
org.springframework.boot.loader.archive.Archive
;
import
org.springframework.boot.loader.util.AsciiBytes
;
/**
* {@link Launcher} for JAR based archives. This launcher assumes that dependency jars are
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/PropertiesLauncher.java
View file @
15527595
...
...
@@ -42,6 +42,7 @@ import org.springframework.boot.loader.archive.Archive.EntryFilter;
import
org.springframework.boot.loader.archive.ExplodedArchive
;
import
org.springframework.boot.loader.archive.FilteredArchive
;
import
org.springframework.boot.loader.archive.JarFileArchive
;
import
org.springframework.boot.loader.util.AsciiBytes
;
import
org.springframework.boot.loader.util.SystemPropertyUtils
;
/**
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/WarLauncher.java
View file @
15527595
...
...
@@ -20,6 +20,7 @@ import java.io.IOException;
import
java.util.List
;
import
org.springframework.boot.loader.archive.Archive
;
import
org.springframework.boot.loader.util.AsciiBytes
;
/**
* {@link Launcher} for WAR based archives. This launcher for standard WAR archives.
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/Archive.java
View file @
15527595
...
...
@@ -23,8 +23,8 @@ import java.util.Collection;
import
java.util.List
;
import
java.util.jar.Manifest
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.Launcher
;
import
org.springframework.boot.loader.util.AsciiBytes
;
/**
* An archive that can be launched by the {@link Launcher}.
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/ExplodedArchive.java
View file @
15527595
...
...
@@ -35,7 +35,7 @@ import java.util.Map;
import
java.util.Set
;
import
java.util.jar.Manifest
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.
util.
AsciiBytes
;
/**
* {@link Archive} implementation backed by an exploded archive directory.
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/FilteredArchive.java
View file @
15527595
...
...
@@ -25,7 +25,7 @@ import java.util.Collections;
import
java.util.List
;
import
java.util.jar.Manifest
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.
util.
AsciiBytes
;
/**
* Decorator to apply an {@link Archive.EntryFilter} to an existing {@link Archive}.
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/archive/JarFileArchive.java
View file @
15527595
...
...
@@ -27,10 +27,10 @@ import java.util.List;
import
java.util.jar.JarEntry
;
import
java.util.jar.Manifest
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.jar.JarEntryData
;
import
org.springframework.boot.loader.jar.JarEntryFilter
;
import
org.springframework.boot.loader.jar.JarFile
;
import
org.springframework.boot.loader.util.AsciiBytes
;
/**
* {@link Archive} implementation backed by a {@link JarFile}.
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/JarEntryData.java
View file @
15527595
...
...
@@ -21,9 +21,9 @@ import java.io.InputStream;
import
java.lang.ref.SoftReference
;
import
java.util.zip.ZipEntry
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.data.RandomAccessData
;
import
org.springframework.boot.loader.data.RandomAccessData.ResourceAccess
;
import
org.springframework.boot.loader.util.AsciiBytes
;
/**
* Holds the underlying data of a {@link JarEntry}, allowing creation to be deferred until
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/JarEntryFilter.java
View file @
15527595
...
...
@@ -16,7 +16,7 @@
package
org
.
springframework
.
boot
.
loader
.
jar
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.
util.
AsciiBytes
;
/**
* Interface that can be used to filter and optionally rename jar entries.
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/JarFile.java
View file @
15527595
...
...
@@ -34,10 +34,10 @@ import java.util.jar.JarInputStream;
import
java.util.jar.Manifest
;
import
java.util.zip.ZipEntry
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.data.RandomAccessData
;
import
org.springframework.boot.loader.data.RandomAccessData.ResourceAccess
;
import
org.springframework.boot.loader.data.RandomAccessDataFile
;
import
org.springframework.boot.loader.util.AsciiBytes
;
/**
* Extended variant of {@link java.util.jar.JarFile} that behaves in the same way but
...
...
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/AsciiBytes.java
→
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/
util/
AsciiBytes.java
View file @
15527595
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
loader
;
package
org
.
springframework
.
boot
.
loader
.
util
;
import
java.nio.charset.Charset
;
...
...
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/AsciiBytesTests.java
View file @
15527595
...
...
@@ -19,6 +19,7 @@ package org.springframework.boot.loader;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.junit.rules.ExpectedException
;
import
org.springframework.boot.loader.util.AsciiBytes
;
import
static
org
.
hamcrest
.
Matchers
.
equalTo
;
import
static
org
.
hamcrest
.
Matchers
.
not
;
...
...
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/archive/ExplodedArchiveTests.java
View file @
15527595
...
...
@@ -33,9 +33,9 @@ import org.junit.Before;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.junit.rules.TemporaryFolder
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.TestJarCreator
;
import
org.springframework.boot.loader.archive.Archive.Entry
;
import
org.springframework.boot.loader.util.AsciiBytes
;
import
static
org
.
hamcrest
.
Matchers
.
equalTo
;
import
static
org
.
hamcrest
.
Matchers
.
nullValue
;
...
...
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/archive/JarFileArchiveTests.java
View file @
15527595
...
...
@@ -25,9 +25,9 @@ import org.junit.Before;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.junit.rules.TemporaryFolder
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.TestJarCreator
;
import
org.springframework.boot.loader.archive.Archive.Entry
;
import
org.springframework.boot.loader.util.AsciiBytes
;
import
static
org
.
hamcrest
.
Matchers
.
equalTo
;
import
static
org
.
junit
.
Assert
.
assertThat
;
...
...
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar/JarFileTests.java
View file @
15527595
...
...
@@ -31,9 +31,9 @@ import org.junit.Rule;
import
org.junit.Test
;
import
org.junit.rules.ExpectedException
;
import
org.junit.rules.TemporaryFolder
;
import
org.springframework.boot.loader.AsciiBytes
;
import
org.springframework.boot.loader.TestJarCreator
;
import
org.springframework.boot.loader.data.RandomAccessDataFile
;
import
org.springframework.boot.loader.util.AsciiBytes
;
import
static
org
.
hamcrest
.
Matchers
.
equalTo
;
import
static
org
.
hamcrest
.
Matchers
.
greaterThan
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment