Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/xcsp3team/ace
27 January 2023, 10:57:32 UTC
  • Code
  • Branches (5)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/add-license-1
    • refs/heads/main
    • refs/tags/2.0
    • refs/tags/2.0.1
    • refs/tags/2.1
    • 8aa0adf3e5fb14e238984ebfafdf6a0a3e78148d
    No releases to show
  • c429e76
  • /
  • build.gradle
Raw File Download Save again
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge
swh:1:cnt:80d474c305453235d0b344ab893efc4372617008
origin badgedirectory badge
swh:1:dir:c429e762b23768819ff20fc05ddac352559d9e16
origin badgerevision badge
swh:1:rev:8aa0adf3e5fb14e238984ebfafdf6a0a3e78148d
origin badgesnapshot badge
swh:1:snp:eee47c9785151f571d2fa4ac12479e69e21070ff

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
Tip revision: 8aa0adf3e5fb14e238984ebfafdf6a0a3e78148d authored by lecoutre on 21 January 2023, 13:26:58 UTC
Fixed problem with a case of constraint Cumulative
Tip revision: 8aa0adf
build.gradle
apply plugin: 'java'


java {
    toolchain {
        languageVersion = JavaLanguageVersion.of(11)
    }
}

//sourceCompatibility = 1.11
//targetCompatibility = 1.11 

archivesBaseName = "ACE"
version = '2.1'
 
repositories {
 mavenCentral()
}

dependencies {
  implementation fileTree(dir: 'lib', include: ['*.jar']) 
  testImplementation 'junit:junit:4.12'
}
// with this statement below (jar { }), we build a fat jar, i.e. a jar with included dependencies
jar {
    manifest {
        attributes(
                'Main-Class': 'main.Head'
        )
    }
    from {
        configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
    }
 }
	
test {
	//executable = "/path/to/jdk/bin/java"
	
   // show standard out and standard error of the test JVM(s) on the console
  testLogging.showStandardStreams = true
 
   
 // set heap size for the test JVM(s)
  minHeapSize = "128m"
  maxHeapSize = "1024m"
  
  // set JVM arguments for the test JVM(s)
  jvmArgs "-da" 
  jvmArgs "-Xmx12G"  // -d64 
}

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API