How do I make a releases, builds, and/or snapshots with BitBucket?

2022: BCLOUD-11404 shows this is still not implemented 2015: As I mentioned before, BitBucket doesn’t support the GitHub-like release feature. Its FAQ still mention: For binary or executable storage, we recommend you look into file hosting services such as DropBox, rsync, rsnapshot, rdiff-backup, and so forth. Still not sure what to do? Review this post … Read more

jest snapshot testing: how to ignore part of the snapshot file in jest test results

Now you can also use property matcher for these cases. By example to be able to use snapshot with these object : const obj = { id: dynamic(), foo: ‘bar’, other: ‘value’, val: 1, }; You can use : expect(obj).toMatchSnapshot({ id: expect.any(String), }); Jest will just check that id is a String and will process … Read more

How to download SNAPSHOT version from maven SNAPSHOT repository?

Just add this to your ~/.m2/settings.xml: <profiles> <profile> <id>allow-snapshots</id> <activation><activeByDefault>true</activeByDefault></activation> <repositories> <repository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories> </profile> </profiles>