You can download streams-schema-activitystreams-0.6.1.jar in this page.
Apache License
streams-schema-activitystreams-0.6.1.jar file has the following types.
META-INF/DEPENDENCIES META-INF/DISCLAIMER META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.streams/streams-schema-activitystreams/pom.properties META-INF/maven/org.apache.streams/streams-schema-activitystreams/pom.xml activity.json activity.xsd assembly-schemas.xml collection.json media_link.json object.json objectTypes/alert.json objectTypes/application.json objectTypes/article.json objectTypes/audio.json objectTypes/badge.json objectTypes/binary.json objectTypes/bookmark.json objectTypes/comment.json objectTypes/device.json objectTypes/event.json objectTypes/file.json objectTypes/folder.json objectTypes/game.json objectTypes/group.json objectTypes/image.json objectTypes/issue.json objectTypes/job.json objectTypes/list.json objectTypes/note.json objectTypes/offer.json objectTypes/organization.json objectTypes/page.json objectTypes/permission.json objectTypes/person.json objectTypes/photo-album.json objectTypes/photo.json objectTypes/place.json objectTypes/playlist.json objectTypes/process.json objectTypes/product.json objectTypes/property.json objectTypes/question.json objectTypes/review.json objectTypes/role.json objectTypes/service.json objectTypes/song.json objectTypes/status.json objectTypes/task.json objectTypes/team.json objectTypes/video.json verbs/accept.json verbs/access.json verbs/acknowledge.json verbs/add.json verbs/agree.json verbs/append.json verbs/approve.json verbs/archive.json verbs/assign.json verbs/at.json verbs/attach.json verbs/attend.json verbs/author.json verbs/authorize.json verbs/borrow.json verbs/build.json verbs/cancel.json verbs/checkin.json verbs/close.json verbs/complete.json verbs/confirm.json verbs/consume.json verbs/create.json verbs/delete.json verbs/deliver.json verbs/deny.json verbs/disagree.json verbs/dislike.json verbs/experience.json verbs/favorite.json verbs/find.json verbs/flag-as-inappropriate.json verbs/follow.json verbs/give.json verbs/host.json verbs/ignore.json verbs/insert.json verbs/install.json verbs/interact.json verbs/invite.json verbs/join.json verbs/leave.json verbs/like.json verbs/listen.json verbs/lose.json verbs/make-friend.json verbs/open.json verbs/play.json verbs/post.json verbs/present.json verbs/purchase.json verbs/qualify.json verbs/read.json verbs/receive.json verbs/reject.json verbs/remove-friend.json verbs/remove.json verbs/replace.json verbs/request-friend.json verbs/request.json verbs/resolve.json verbs/retract.json verbs/return.json verbs/rsvp-maybe.json verbs/rsvp-no.json verbs/rsvp-yes.json verbs/satisfy.json verbs/save.json verbs/schedule.json verbs/search.json verbs/sell.json verbs/send.json verbs/share.json verbs/sponsor.json verbs/start.json verbs/stop-following.json verbs/submit.json verbs/tag.json verbs/terminate.json verbs/tie.json verbs/unfavorite.json verbs/unlike.json verbs/unsatisfy.json verbs/unsave.json verbs/unshare.json verbs/update.json verbs/use.json verbs/watch.json verbs/win.json
streams-schema-activitystreams-0.6.1.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file ~ distributed with this work for additional information ~ regarding copyright ownership. The ASF licenses this file ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ ~ 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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.streams</groupId> <artifactId>streams-schemas</artifactId> <version>0.6.1</version> </parent> <artifactId>streams-schema-activitystreams</artifactId> <name>${project.artifactId}</name> <description>Activity Streams schemas</description> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-testing</artifactId> <version>${project.version}</version> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>json-schema-validator</artifactId> <type>jar</type> <scope>test</scope> </dependency> </dependencies> <build> <testSourceDirectory>src/test/java</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>${project.basedir}/src/main/jsonschema</directory> </resource> <resource> <directory>src/main/xmlschema</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>schemas</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/resources/assembly-schemas.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>testdata</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/test/resources/assembly-testdata.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.apache.streams</groupId> <artifactId>streams-schema-activitystreams</artifactId> <version>0.6.1</version> </dependency>
If you think the following streams-schema-activitystreams-0.6.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download streams-schema-activitystreams-0.6.1.jar file