Skip to content

Commit

Permalink
switch to montoya, added persistence
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-m-holub committed Nov 5, 2024
1 parent 77cad8e commit b719ff3
Show file tree
Hide file tree
Showing 12 changed files with 595 additions and 515 deletions.
2 changes: 1 addition & 1 deletion BappDescription.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<li>URLTimeStamp — Same as previous command, but URL-encoded</li>
</ul>

<p>Custom timestamps are generated using the SimpleDateFormat Java class. Please see their documentation for a list of supported characters. You can include text as-is into your timestamp with single quotes:</p>
<p>Custom timestamps are generated using the <a href="https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html">SimpleDateFormat</a> Java class. Please see their documentation for a list of supported characters. You can include text as-is into your timestamp with single quotes:</p>

<blockquote><code>yyyy-MM-dd'T'HH:mm:ss'Z'</code></blockquote>

Expand Down
29 changes: 10 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,20 @@
apply plugin: 'java'
plugins {
id 'java'
}

version '1.3.0'

repositories {
mavenLocal()
mavenCentral()
}

dependencies {
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
compileOnly 'net.portswigger.burp.extensions:montoya-api:2024.7'
}

targetCompatibility = '1.8'
sourceCompatibility = '1.8'

sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources'
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}

task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
Binary file modified debug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion settings.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions src/META-INF/MANIFEST.MF

This file was deleted.

Loading

0 comments on commit b719ff3

Please sign in to comment.